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