Download String 29-12-2015 11:28:48 C# / Networking 0 Bookmark(s) 363 View(s) Using the WebClientclass makes it easy to download a string through HTTP: public void DownloadString() { var client = new WebClient(); var html = client.DownloadString("http://www.lazzycoder.com"); Console.WriteLine(html); }