Пример #1
0
        public override uint ReadUInt()
        {
            byte b1 = ReadByte();
            byte b2 = ReadByte();
            byte b3 = ReadByte();
            byte b4 = ReadByte();

            return(ByteConverters.GetUInt(b1, b2, b3, b4));
        }