Exemplo n.º 1
0
 public override string ToString()
 {
     return("command=" + UshortUtils.ToAscii(Command)
            + ",status=" + Status
            + ",value=" + (Value == null ? "null" : ByteUtils.ToBase16(Value))
            + "," + base.ToString());
 }
Exemplo n.º 2
0
 public override string ToString()
 {
     return(base.ToString()
            + ",command=" + UshortUtils.ToAscii(Command)
            + ",value=" + (Value == null ? "null" : ByteUtils.ToBase16(Value)));
 }