BinaryHelper.Extensions.ReadBUInt32 C# (CSharp) Method

ReadBUInt32() public static method

public static ReadBUInt32 ( this Reader ) : uint
Reader this
return uint
        public static uint ReadBUInt32(this BinaryReader Reader)
        {
            byte[] array = Reader.ReadBytes(4);
                Array.Reverse(array);
            return BitConverter.ToUInt32(array, 0);
        }