IO > IO Assembly Classes > TextReader
The TextWriter class implements an object that enables the user to read data in the text format.
Constructor name | Brief description | |
![]() |
The Create constructor creates an object that enables the user to read text data. |
Property name | Brief description | |
![]() |
The Encoding property determines a text encoding to read from a file. | |
![]() |
The Eof property returns whether end of a file text is reached. | |
![]() |
The WordDelimiters property determines a delimiter between words while reading a text file. |
Method name | Brief description | |
![]() |
The ReadBoolean method reads a logical value from a text file. | |
![]() |
The ReadChar method reads characters from a text file. | |
![]() |
The ReadDateTime method reads date and time from a text file. | |
![]() |
The ReadDouble method reads real numbers from a text file. | |
![]() |
The ReadInteger method reads an integer value from a text file. | |
![]() |
The ReadLine method reads a character string from a text file. | |
![]() |
The ReadString method reads a character string of the specified length. | |
![]() |
The ReadToEnd method reads a text file as one character string. | |
![]() |
The ReadWord method reads words taking into account delimiters. |
See also: