AjErl.Compiler.Lexer.NextChar C# (CSharp) Method

NextChar() private method

private NextChar ( ) : int
return int
        private int NextChar()
        {
            int ich = this.NextSimpleChar();

            if (ich >= 0 && (char)ich == '%')
                for (ich = this.NextSimpleChar(); ich != -1 && (char)ich != '\n';)
                    ich = this.NextSimpleChar();

            return ich;
        }