Given this URL:
http://www.dreamincode.net/forums/xml.php?showuser=1253
How can I download the resulting XML file and have it loaded to memory so I can grab information from it using Linq?
Thanks for the help.
Why complicate things? This works:
var xml = XDocument.Load("http://www.dreamincode.net/forums/xml.php?showuser=1253");
2.1m questions
2.1m answers
60 comments
57.0k users