BitSharp.Common.Bits.ToUInt32 C# (CSharp) Method

ToUInt32() public static method

public static ToUInt32 ( byte value, int startIndex ) : UInt32
value byte
startIndex int
return UInt32
        public static UInt32 ToUInt32(byte[] value, int startIndex = 0)
        {
            return BitConverter.ToUInt32(Order(value), startIndex);
        }