Exemplo n.º 1
0
 public ByteUtil PutLong(long input)
 {
     return(Put(ByteConverter.LongToByte(input)));
 }
Exemplo n.º 2
0
 public ByteUtil PutShort(short input)
 {
     return(Put(ByteConverter.ShortToByte(input)));
 }
Exemplo n.º 3
0
 public ByteUtil PutInt(int input)
 {
     return(Put(ByteConverter.IntToByte(input)));
 }