CorLib  

TextReader

TextReader overview

Public:

Methods:
CloseReader Closes the current reader.  
Equals Returns if the value is equal to this instance of TextReader  
GetHashCode Returns a pseudo-unique number that identifies this object instance.  
Peek Returns the next character from the stream without advancing to the next characters.  
Read Returns the next character in the stream, consuming that character.  
ReadBlock Fills a character array (Integer Array) with the specified number of characters, returning the actual number of characters read from the stream.  
ReadLine Reads characters from the stream until a Return or a LineFeed is found, returning all characters up to that line break.  
ReadToEnd Reads the remaining characters in the stream, returning them as a string.  
ToString Returns a string representation of this instance.  

See Also