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