System.Text.RegularExpressions.CILCompiler.ReadInt C# (CSharp) Method

ReadInt() private method

private ReadInt ( byte code, int pc ) : int
code byte
pc int
return int
		private int ReadInt (byte[] code, int pc) {
			int val = code [pc];
			val |= code [pc + 1] << 8;
			val |= code [pc + 2] << 16;
			val |= code [pc + 3] << 24;
			return val;
		}