Hi flybrid,
StreamReader sr = new StreamReader(filepath, System.Text.UnicodeEncoding);
string text = sr.ReadToEnd();
sr.Close();
This should get you a string of whatever is inside the file. This sample specifies Unicode as the text format of the file.
Happy coding!
Morten Wennevik [C# MVP]