示例#1
0
 public DCO(byte[] asduBytes, int offset)
 {
     this.dcs = (asduBytes[offset] & 0x03);
     this.qoc = new QOC(asduBytes, offset);
 }
示例#2
0
 public SCO(byte[] asduBytes, int offset)
 {
     this.scs = (asduBytes[offset] & 0x01) == 0x01;
     this.qoc = new QOC(asduBytes, offset);
 }