Is this is a bug in Visual Studio 2015 or?
Exception Exception thrown: 'System.ArgumentNullException' in
mscorlib.dll ("Value cannot be null.") System.ArgumentNullException
The code/tutorial I was following...
https://www.codeproject.com/Tips/397574/Use-Csharp-to-get-JSON-Data-from-the-Web-and-Map-i
To reproduced create a form application and add a button called "button1" and for button1_Click function add this code, http in the URL gives no error, https gives an error...
var w = new WebClient();
string url = "https://www.msftncsi.com/ncsi.txt";
var content = w.DownloadString(url);
MessageBox.Show(content);