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: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic string ReadString()
Return Value
Type:
Stringthe remaining bytes of data from standard input as a
string
ExceptionsException | Condition |
---|
IOException | if standard input is empty or if the number of bits
available on standard input is not a multiple of 8 (byte-aligned) |
See Also