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