AjErl.Compiler.Lexer.NextSimpleChar C# (CSharp) Метод

NextSimpleChar() приватный Метод

private NextSimpleChar ( ) : int
Результат int
        private int NextSimpleChar()
        {
            if (this.chars.Count > 0)
                return this.chars.Pop();

            return this.reader.Read();
        }