Created
December 22, 2017 12:30
-
-
Save davlgd/ed465876f1736a48a3a627649ab05981 to your computer and use it in GitHub Desktop.
AlticeStockChecker - Etape 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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