Example #1
0
        public uint GetUInt32(long offset = 0, bool next = true)
        {
            long     count  = 4;
            TesBytes b      = GetBytes(count, offset, next);
            uint     result = b.ToUInt32();

            return(result);
        }