Tools.YyLexer.testEOF C# (CSharp) Method

testEOF() private method

private testEOF ( char ch ) : bool
ch char
return bool
        bool testEOF(char ch)
        {
            UnicodeCategory cat = Char.GetUnicodeCategory(ch);
            return (cat==UnicodeCategory.OtherNotAssigned);
        }