AjRools.Expert.Compiler.Lexer.ReadChar C# (CSharp) Méthode

ReadChar() private méthode

private ReadChar ( ) : int
Résultat int
        private int ReadChar()
        {
            if (this.characters.Count > 0)
                return this.characters.Pop();

            return this.reader.Read();
        }