Mono.Cecil.Cil.PortablePdbReader.ReadInt32 C# (CSharp) Method

ReadInt32() static private method

static private ReadInt32 ( byte bytes, int start ) : int
bytes byte
start int
return int
        static int ReadInt32(byte [] bytes, int start)
        {
            return (bytes [start]
                | (bytes [start + 1] << 8)
                | (bytes [start + 2] << 16)
                | (bytes [start + 3] << 24));
        }