AjErl.Compiler.Lexer.NextChar C# (CSharp) Méthode

NextChar() private méthode

private NextChar ( ) : int
Résultat 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;
        }