Beispiel #1
0
 public BinaryOut(PhysicalDevice physicalDevice, Port port)
     : base(physicalDevice)
 {
     Port = port;
 }
Beispiel #2
0
 protected PhysicalComponent(PhysicalDevice physicalDevice)
 {
     if (physicalDevice == null)
         throw new ArgumentNullException("physicalDevice");
     this.PhysicalDevice = physicalDevice;
 }