AsmHighlighter.Lexer.Scanner.GetMaxParseToken C# (CSharp) Method

GetMaxParseToken() private static method

private static GetMaxParseToken ( ) : int
return int
        private static int GetMaxParseToken() {
            System.Reflection.FieldInfo f = typeof(Tokens).GetField("maxParseToken");
            return (f == null ? int.MaxValue : (int)f.GetValue(null));
        }