I am learning Silverlight and WPF on my own to expand my programming base. I am following this tutorial, and I am currently stuck on part 3. I am up to the point where my application requests and receives a response from digg.com, but I cannot figure out how to properly dimension the XDocument
class (as the tutorial shows) to read the xmlcontent that is retrieved.
Granted, the tutorial is in C# (which I know very little about), but I do not see why I cannot access this class. Intellisense suggested replacing XDocument
with Document.Run
, but that got me nowhere. I also read that this class was part of the System.Xml.Linq
namespace, but even trying to dimension my variable as
Dim xS as System.Xml.Linq.XDocument
gives me nothing. Anyone know what I can do?