ReadChar: Char;
The ReadChar method reads characters from a text file.
Sub Main;
Var
File1: IFileInfo;
TextR: ITextReader;
c: Char;
Begin
File1:=New FileInfo.Attach("c:\New_folder\1.txt");
If File1.Exists Then
TextR:=File1.OpenTextReader;
c:=TextR.ReadChar;
End If;
Dispose File1;
End Sub Main;
After executing this example, the "b" variable contains a logical value read from the binary file 1.dat.
See also: