StreamReader f = new StreamReader(new FileStream("c:\afile.txt", FileMode.Open, FileAccess.ReadWrite));
textBox1.Text = f.ReadToEnd();

=================

OK! I have found...

But how to write the text back?
Must I create a new file and overwrite old file?
Maybe I can use "FileAccess.ReadWrite" mode?