Summary
Provides functionality to replace the three different newlines (\r, \n, and \r\n) while reading from a stream
containing textual data, without caring about the text encoding, as long as it is an encoding in which the newline
characters are 8-bit ASCII (e.g. UTF-8).
Constructors
Instance methods
| void | | Closes the underlying stream. |
| void | | Does nothing. |
| int | Read(byte[] buffer, int offset, int count) |
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of
bytes read. |
| long | Seek(long offset, SeekOrigin origin) | Throws a NotSupportedException. |
| void | |
| void | Write(byte[] buffer, int offset, int count) |
Writes a sequence of bytes to the current stream and advances the current position within this stream by the
number of bytes written. |
Instance properties
| bool | | Returns true. |
| bool | | Returns false. |
| bool | | Returns true. |
| long | | Throws a NotSupportedException. |
| long | |