show/hide this revision's text 4 added 12 characters in body; edited title

Using the .NET Framework, what's What's the best way to read the contents of a string to a text file ?to a string in .NET?

It seems like there should be something shorter than this:

private string LoadFromFile(string path)
{
   try
   {
       string fileContents;
       using(StreamReader rdr = File.OpenText(path))
       {
            fileContents = rdr.ReadToEnd();
       }

       return fileContents;
   }
   catch
   {
       throw;
   }
}
show/hide this revision's text 3 edited title

Using the .NET Framework, what's the best way to write read the contents of a string to a text file?

show/hide this revision's text 2 Automated tag tuning
show/hide this revision's text 1