예제 #1
0
파일: Port.cs 프로젝트: Edll/iow
 private void PortBitInChangeEvent(PortBit portbit)
 {
     PortBitInChange?.Invoke(this, portbit);
 }
예제 #2
0
파일: Device.cs 프로젝트: Edll/iow
 private void PortBitInChangeEvent(Port port, PortBit portBit)
 {
     PortBitInChange?.Invoke(this, port, portBit);
     AddDeviceEventLog("In Port: " + port.PortNumber + " hat sich verändert zu: " + portBit.BitIn);
 }