Mosa.HardwareSystem.DeviceDriver.DeviceDriver C# (CSharp) Méthode

DeviceDriver() public méthode

Initializes a new instance of the DeviceDriver class.
public DeviceDriver ( IDeviceDriver deviceDriverAttribute, Type driverType ) : System
deviceDriverAttribute IDeviceDriver The device driver attribute.
driverType System.Type Type of the driver.
Résultat System
        public DeviceDriver(IDeviceDriver deviceDriverAttribute, Type driverType)
        {
            Attribute = deviceDriverAttribute;
            DriverType = driverType;
            MemoryAttributes = new LinkedList<DeviceDriverPhysicalMemoryAttribute>();
        }