Reading and Writing Text Files in C#

Amgad Suliman | 24/01/2009 | 0 Comments

With all the DBMSs out there, text files are still widely used when developing applications. They are small, fast and do not require any library or application to be installed in the client machine. The System.IO.StreamReader and System.IO.StreamWriter are used to read and write text files to disk.
The following code demonstrates reading a file [...]

Filed Under: Mono 2.0, WinForms