Exemplo n.º 1
0
Arquivo: Bytes.cs Projeto: nunun/Xnet
 /**
  * 情報を読み込みます (Int16/UInt16)
  * Big Endian (Network Byte Order) を使用します。
  */
 public short ReadInt16BE()
 {
     NetworkValue nv = new NetworkValue();
     nv.NTOHS(BitConverter.ToInt16(accessor, this.tailpos));
     this.tailpos += 2;
     return nv.s;
 }