BcsResolver.Common.StringReader.Read C# (CSharp) Method

Read() public method

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
return char
        public char Read()
        {
            var currentChar = Peek();
            if (currentChar != NullChar)
            {
                Position++;
            }
            return currentChar;
        }