How do you download a file from a url with params like the one below where it is parsing out url links
Unix equivalent command would be
curl http://URL | perl -nle 'print "$2" if /(<a href=.*usage\/(.*)">.*<\/a>)/'>project_list.txt
This needs to be run from a C# windows form, please be specific as to what code this takes.
You need to call
new WebClient().DownloadString()to get the page source, then use the HTML Agility Pack to parse it.