RosettaCodeData/Task/HTTP/C-sharp/http.cs
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
263 B
C#

using System;
using System.Text;
using System.Net;
class Program
{
static void Main(string[] args)
{
WebClient wc = new WebClient();
string content = wc.DownloadString("http://www.google.com");
Console.WriteLine(content);
}
}