Skip to content

Instantly share code, notes, and snippets.

@davlgd
Created December 22, 2017 12:30
Show Gist options
  • Save davlgd/ed465876f1736a48a3a627649ab05981 to your computer and use it in GitHub Desktop.
Save davlgd/ed465876f1736a48a3a627649ab05981 to your computer and use it in GitHub Desktop.
AlticeStockChecker - Etape 10
private string GetHTMLCode(string url)
{
string webPageCode = string.Empty;
using (WebClient wc = new WebClient())
{
webPageCode = wc.DownloadString(url);
}
return webPageCode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment