什么是X文档?
我正在使用linq to xml。
在此,我们将 xml 文件加载为 XDocument.Load("filename.xml")
。
这个XDocument
是什么?
I am using linq to xml.
In this we load xml file as XDocument.Load("filename.xml")
.
What is this XDocument
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XDocument 是一个 .NET 类,它表示内存中的 XML 文档,但具有对 Linq 的特定支持。它是 System.Xml.Linq 命名空间的一部分。请参阅 msdn。
XDocument is a .NET class which represents an XML Document in memory but with specific support for Linq. It is part of the System.Xml.Linq namespace. See msdn.
XDocument
是一个表示 XML 文档的类,提供 LINQ 友好的行为和方法。它相当于 LINQ 时代的 System.Xml.XmlDocument。
XDocument
is a class representing an XML document, providing LINQ-friendly behaviors and approaches.It's
System.Xml.XmlDocument
equivalent for the LINQ era.在您的例子中,XDocument 是一个允许您调用静态方法 Load 的类。
此 Load 方法返回 XDocument 的实例。
In your case XDocument is a class which allows you to call the static method Load.
This Load method returns an instance of XDocument.