Blog

Choose the correct option:

class Program {
static void Main(string[] args) {
string WebsiteAddress = “https://github.com/”;
WebRequest req = WebRequest.Create(WebsiteAddress);
WebResponse res = req.GetResponse();
string result = new StreamReader(res.GetResponseStream()).ReadToEnd();
}
}