BcsResolver.Common.StringReader.Read C# (CSharp) Метод

Read() публичный Метод

Returns the char at the cursor and advances to the next char, or returns Char.Zero, if we are on the end of file.
public Read ( ) : char
Результат char
        public char Read()
        {
            var currentChar = Peek();
            if (currentChar != NullChar)
            {
                Position++;
            }
            return currentChar;
        }