无法在 Silverlight 中使用 XDocument?
我正在创建一个 Windows Phone 7 应用程序,该应用程序将使用公开的 Web 服务。现在,我想加载一个虚拟 xml 文件并从中解析信息。
我习惯于使用 XDocument 来做这样的事情,但似乎我无法在代码中输入 using 命名空间。
还有其他想法吗?
I'm creating a Windows Phone 7 application that will consume an exposed webservice. For now, I want to load a dummy xml file and parse information from that.
I'm used to using XDocument for things like this, but it seems I can't type in the using namespace in my code.
Any other ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XDocument 类位于 System.Xml.Linq 命名空间中,与 dll 同名。
您是否添加了对 System.Xml.Linq.dll 的引用?
The XDocument class is in the System.Xml.Linq namespace, with dll of the same name.
Have you added a reference to the System.Xml.Linq.dll?
查看如何在 SilverLight 项目中使用 XDocument 类 (C# )
Take a look at How to Use XDocument class in SilverLight Project (C#)