ReadBeUInt32() 공개 정적인 메소드

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

            off += 4;
            return(u);
        }
예제 #2
0
 public int PeekBeInt32(uint offset)
 {
     return((int)MemoryArea.ReadBeUInt32(bytes, offset + off));
 }