Rhino.Decompiler.GetNext C# (CSharp) Method

GetNext() private static method

private static GetNext ( string source, int length, int i ) : int
source string
length int
i int
return int
		private static int GetNext(string source, int length, int i)
		{
			return (i + 1 < length) ? source[i + 1] : Token.EOF;
		}