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

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

private NextCharSkippingWhiteSpaces ( ) : int
Результат int
        private int NextCharSkippingWhiteSpaces()
        {
            int ich = this.NextChar();

            while (ich != -1 && char.IsWhiteSpace((char)ich))
                ich = this.NextChar();

            return ich;
        }