XmlDocument 存在于哪个程序集中,以及如何使用它?
我有以下代码:
using System.Xml;
namespace MyApp {
public class Foo : IBar {
public void SomeCallback(object sender, CallbackEventArgs e) {
string s = e.Result;
System.Xml.XmlDocument xml; // <-- Error CS0234.
...
这会导致错误CS0234:命名空间“System.Xml”中不存在类型或命名空间名称“XmlDocument”(您是否缺少程序集引用?)
我已验证System.Xml 包含在解决方案资源管理器的“引用”下。它被列为使用 2.0.xx,但这应该没问题,因为类 据称存在 那么?
我不太熟悉 .net 开发,所以我不知道如何解决这个问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您对问题发布的评论,您似乎正在构建 Silverlight 应用程序。类型
XmlDocument
不包含在 Silverlight 版本的框架中。推荐的替代方案是XDocument
这是有关在 Silverlight 应用程序中使用 XML 的教程页面
Based on the comment you posted to your question it looks like you are building a Silverlight application. The type
XmlDocument
is not included in the Silverlight version of the framework. The recommended alternative isXDocument
Here is a tutorial page on using XML in a Silverlight application