Esempio n. 1
0
 public bool ReadBool()
 {
     return(Binary.ReadByte(ref this._data, ref this._offset) != 0);
 }
Esempio n. 2
0
 public byte ReadByte()
 {
     return(Binary.ReadByte(ref this._data, ref this._offset));
 }
Esempio n. 3
0
 public char ReadChar()
 {
     return((char)Binary.ReadByte(ref this._data, ref this._offset));
 }