Reads all characters from the current position to the end of the string and returns them as a single string.
The content from the current position to the end of the underlying string.
Type Reason ObjectDisposedException The current reader is closed. OutOfMemoryException There is insufficient memory to allocate a buffer for the returned string.
This method overrides the TextReader.ReadToEnd method.
If the current method throws an OutOfMemoryException, the reader's position in the underlying string is advanced by the number of characters the method was able to read, but the characters already read into the internal StringReader.ReadToEnd buffer are discarded. Because the position of the reader in the string cannot be changed, the characters already read are unrecoverable, and can be accessed only by reinitializing the System.IO.StringReader. To avoid such a situation, use the StringReader.Read method and store the read characters in a preallocated buffer.
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. |