Environment: VS2015 Console app
How do I convert the response to my entity object?
Article was found here, under WebClient Class.
Also was wondering what JArray is? I found something in Newtonsoft.JSON and MS MVC.
var client = new WebClient();
client.Headers.Add("user-agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36");
var response = client.DownloadString("https://api.github.com/repos/restsharp/restsharp/releases");
var releases = JArray.Parse(response);