示例#1
0
文件: Port.cs 项目: Edll/iow
 private void PortBitOutChangeEvent(PortBit portbit)
 {
     PortBitOutChange?.Invoke(this, portbit);
 }
示例#2
0
文件: Device.cs 项目: Edll/iow
 private void PortBitOutChangeEvent(Port port, PortBit portBit)
 {
     PortBitOutChange?.Invoke(this, port, portBit);
     AddDeviceEventLog("Out Port: " + port.PortNumber + " hat sich verändert zu: " + portBit.BitOut);
 }