Method Read
Read(Char[], Int32, Int32)
Reads a specified maximum number of characters from the current reader and writes the data to a buffer, beginning at the specified index.
Declaration
public override int Read(char[] buffer, int offset, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | buffer | When this method returns, contains the specified character array with the values between index and (index + count - 1) replaced by the characters read from the current source. |
System.Int32 | offset | The position in buffer at which to begin writing. |
System.Int32 | length | The maximum number of characters to read. If the end of the reader is reached before the specified number of characters is read into the buffer, the method returns. |
Returns
Type | Description |
---|---|
System.Int32 | The number of characters that have been read. The number will be less than or equal to count, depending on whether the data is available within the reader. This method returns 0 (zero) if it is called when no more characters are left to read. |
Read()
Reads the next character from the text reader and advances the character position by one character.
Declaration
public override int Read()
Returns
Type | Description |
---|---|
System.Int32 | The next character from the text reader, or -1 if no more characters are available. |