Exemple #1
0
        public UInt32 ReadUInt32()
        {
            byte[] bytes  = ReadBytes(4);
            UInt32 result = ByteUtilities.ToUInt32(bytes);

            return(result);
        }
Exemple #2
0
 public uint ReadUInt32()
 {
     return(ByteUtilities.ToUInt32(ReadBytes(4)));
 }