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

ReadShort() private method

private ReadShort ( byte program, int pc ) : int
program byte
pc int
return int
		private int ReadShort (byte[] program, int pc) {
			return (int)program [pc] | ((int)program [pc + 1] << 8);
		}