public WksRecord(DataBuffer buffer, int length) { _ipAddress = buffer.ReadIPAddress(); _protocol = buffer.ReadByte(); _services = new Byte[length - 5]; for (int i = 0; i < (length - 5); i++) _services[i] = buffer.ReadByte(); }
public WksRecord(DataBuffer buffer, int length) { _ipAddress = buffer.ReadIPAddress(); _protocol = buffer.ReadByte(); _services = new Byte[length - 5]; for (int i = 0; i < (length - 5); i++) { _services[i] = buffer.ReadByte(); } }