ApProg.Utilities.ByteConversion.ToUint C# (CSharp) Method

ToUint() public static method

public static ToUint ( this bytes, int index ) : uint
bytes this
index int
return uint
        public static uint ToUint(this List<byte> bytes, int index)
        {
            return (uint)(bytes[index] | bytes[index + 1] << 8 | bytes[index + 2] << 16 | bytes[index + 3] << 24);
        }