How could I use C# to download the contents of a URL, and store the text in a string, without having to save the file to the hard drive?
string contents; using (var wc = new System.Net.WebClient()) contents = wc.DownloadString(url);