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);
1.4m articles
1.4m replys
5 comments
57.0k users