XmlDocument type not found even though I've referenced System.XML?

后端 未结 5 1047
抹茶落季
抹茶落季 2021-01-19 02:49

I\'ve referenced System.Xml:

using System.Xml;

Then in this line:

XmlDocument xdoc = new XmlDocument();

I

相关标签:
5条回答
  • 2021-01-19 03:30

    Are you perhaps working inside a SilverLight project?

    Only time I have experienced this was when starting out in SilverLight, I did not realise that not all of the System.XML was in the Silverlight CLR version. I used System.Linq.XML instead.

    0 讨论(0)
  • 2021-01-19 03:40

    I know this is a very old question but the problem persists nowadays. I'm on a Xamarin.Forms project and the PCL project targets a profile (Profile111) that doesn't support XmlDocument. I had to use System.Xml.Linq.XDocument. My projects targets WindowsPhone and XmlDocument doesn't exist on this target.

    0 讨论(0)
  • 2021-01-19 03:40

    If you're using Visual Studio Code, you need to include the .NET Standard package from NuGet. You can also just include the System.Xml.XmlDocument package directly if that's all you need.

    0 讨论(0)
  • 2021-01-19 03:42

    I know that the question is already answered, but I want to add the solution for the very similar problem that I had, which might help others:

    In my case it was a simple misspelling, well, not even that, it was an uppercase-lowercase-fault:
    There are 2 classes: XMLDocument (from msxml.h) and XmlDocument (from System.Xml).
    Make sure that you're not mixing them up! ;-)

    0 讨论(0)
  • 2021-01-19 03:46

    Make sure your project references the System.Xml.dll assembly. It's possible that you're referencing a different assembly that contains other System.Xml.* classes and that might be why you're seeing the System.Xml namespace but without the classes you need.

    If you already have this reference, try removing and re-adding it and see if that irons out some weird VS glitch.

    0 讨论(0)
提交回复
热议问题