Skip to content

Instantly share code, notes, and snippets.

@manish-sinha
Created March 23, 2017 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manish-sinha/c57664358715e36c589095852d9b3cf4 to your computer and use it in GitHub Desktop.
Save manish-sinha/c57664358715e36c589095852d9b3cf4 to your computer and use it in GitHub Desktop.
using System;
using System.Net;
namespace someissue
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
using (WebClient client = new WebClient())
{
var data = client.DownloadString("https://www.google.com");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment