Mono.Cecil.Pdb.PdbReader.ReadInt32 C# (CSharp) Méthode

ReadInt32() static private méthode

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