The total number of characters read into the buffer. This can be less than the number of characters requested if that many characters are not currently available, or zero if the end of the underlying string has been reached.
Type Reason ArgumentNullException buffer is null. ArgumentException (index + count ) > buffer.Length. ArgumentOutOfRangeException index < 0
- or-
count < 0.
ObjectDisposedException The current reader is closed.
This method overrides TextReader.Read.
The method will read up to count characters from the System.IO.StringReader into the buffer character array starting at position index. Returns the actual number of characters read, or zero if the end of the string has been reached and no characters are read.
The following table lists examples of other typical or related I/O tasks.
Create a text file. | |
Write to a text file. | |
Read from a text file. | |
Append text to a file. | |
Get the size of a file. | |
Get the attributes of a file. | |
Set the attributes of a file. | |
Determine if a file exists. | |
Read from a binary file. | |
Write to a binary file. |