The next line from the current string, or null if the end of the string is reached.
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.ReadLine method.
A line is defined as a sequence of characters followed by a line feed ("\n"), a carriage return ("\r"), or a carriage return immediately followed by a line feed ("\r\n"). The string that is returned does not contain the terminating carriage return or line feed. The returned value is null if the end of the string has been reached.
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.ReadLine 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. |