iTextSharp.text.pdf.SequenceList.NextChar C# (CSharp) Метод

NextChar() защищенный Метод

protected NextChar ( ) : char
Результат char
        protected char NextChar()
        {
            while (true) {
                if (ptr >= text.Length)
                    return EOT;
                char c = text[ptr++];
                if (c > ' ')
                    return c;
            }
        }