System.Text.UTF7Encoding.DecoderUTF7FallbackBuffer.GetNextChar C# (CSharp) Method

GetNextChar() public method

public GetNextChar ( ) : char
return char
            public override char GetNextChar()
            {
                if (iCount-- > 0)
                    return cFallback;

                // Note: this means that 0 in UTF7 stream will never be emitted.
                return (char)0;
            }