Exemplo n.º 1
0
 public int GetInt()
 {
     byte[] buffer = new byte[4];
     _ms.Read(buffer, 0, buffer.Length);
     return(IntUtils.BytesToInteger(buffer));
 }
Exemplo n.º 2
0
 public void PutInt(uint data)
 {
     Put(IntUtils.ToBytes(data));
 }