当前上下文中不存在 XmlDocument
XmlDocument does not exist in current context
我在我的代码中引用了 System.Xml,但 XmlDocument 仍然没有出现。每当我尝试使用它时,它都会告诉我:
Error: The type or namespace name 'XmlDocument' could not be found (are you missing a
using directive or an assembly reference?)
我看到 this link 这似乎很有帮助;不幸的是,我使用的是 Windows Apps 模板,它不允许我删除或添加引用,而且我确信我没有使用 Silverlight。我正在使用 Visual Studio 2013 和 .NET 4.5。感谢任何帮助。
编辑:我正在尝试执行后台任务。这就是我的使用方式:
XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(toastTemplate);
我知道了:库已被更改或其他原因,所以 XmlDocument 不再在 System.Xml 下。
现在在 Windows.Data.Xml.Dom.
下
这有效:
using Windows.Data.Xml.Dom;
我在我的代码中引用了 System.Xml,但 XmlDocument 仍然没有出现。每当我尝试使用它时,它都会告诉我:
Error: The type or namespace name 'XmlDocument' could not be found (are you missing a
using directive or an assembly reference?)
我看到 this link 这似乎很有帮助;不幸的是,我使用的是 Windows Apps 模板,它不允许我删除或添加引用,而且我确信我没有使用 Silverlight。我正在使用 Visual Studio 2013 和 .NET 4.5。感谢任何帮助。
编辑:我正在尝试执行后台任务。这就是我的使用方式:
XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(toastTemplate);
我知道了:库已被更改或其他原因,所以 XmlDocument 不再在 System.Xml 下。 现在在 Windows.Data.Xml.Dom.
下这有效:
using Windows.Data.Xml.Dom;