Click or drag to resize
BinaryInputReadString Method
Reads the remaining bytes of data from standard input and return as a string. The method is similar to the ReadToEnd method of the .NET Framework.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string ReadString()

Return Value

Type: String
the remaining bytes of data from standard input as a string
Exceptions
ExceptionCondition
IOExceptionif standard input is empty or if the number of bits available on standard input is not a multiple of 8 (byte-aligned)
See Also