Linq to XML 是否更适合小文件?

发布于 2024-12-17 06:27:03 字数 99 浏览 1 评论 0原文

在 Windows Phone 7.5 数据接收食谱中,作者声称 Linq to XML 更适合较小的文件,而旧版 XmlReader、XmlWriter 类最适合大文件。这是真的吗?

In windows phone 7.5 data recepie cookbook author claims that Linq to XML is better suited for smaller files, whereas the legacy XmlReader, XmlWriter classes are best for for large files. Is it true?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

番薯 2024-12-24 06:27:04

是的。原因是,当您创建 XDocument 时,LINQ to XML 会解析整个文档,而 XmlReader 是“仅向前”的,因为它使用流。

Mike Taulty 有一篇关于该主题的精彩博客文章。请参阅此处

Yes. The reason for this is, that LINQ to XML parses the whole document when you create the XDocument, while XmlReader is 'forward only', because it uses a stream.

Mike Taulty has a great blog-post on the topic. See here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文