NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BinaryReader.ReadChar

Reads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and perhaps the particular character being read from the stream.

[Visual Basic]
Overridable Public Function ReadChar() As Char
[C#]
public virtual char ReadChar();
[C++]
public: virtual __wchar_t ReadChar();
[JScript]
public function ReadChar() : Char;

Return Value

A character read from the current stream.

Exceptions

Exception Type Condition
EndOfStreamException The end of the stream has been reached.
IOException An I/O error occurs.

See Also

BinaryReader Class | BinaryReader Members | System.IO Namespace