AjRools.Expert.Compiler.Lexer.ReadChar C# (CSharp) Method

ReadChar() private method

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

            return this.reader.Read();
        }