Click or drag to resize
BinaryInputReadChar Method
Reads the next 8 bits from standard input and return as an 8-bit char. Note that char is a 16-bit type; to read the next 16 bits as a char, use readChar(16).

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public char ReadChar()

Return Value

Type: Char
the next 8 bits of data from standard input as a char
Exceptions
ExceptionCondition
IOExceptionif there are fewer than 8 bits available on standard input
See Also