ReadBeUInt16() 공개 정적인 메소드

public static ReadBeUInt16 ( byte abImage, long off ) : ushort
abImage byte
off long
리턴 ushort
예제 #1
0
        public ushort ReadBeUInt16()
        {
            ushort u = MemoryArea.ReadBeUInt16(bytes, (uint)off);

            off += 2;
            return(u);
        }
예제 #2
0
 public short PeekBeInt16(uint offset)
 {
     return((short)MemoryArea.ReadBeUInt16(bytes, offset + (uint)off));
 }
예제 #3
0
파일: ImageReader.cs 프로젝트: tgiphil/reko
 public ushort PeekBeUInt16(int offset)
 {
     return(MemoryArea.ReadBeUInt16(bytes, offset + (uint)off));
 }