如何从 C# 中的行号和列号查找 XML 节点?
给定以下
- 行号
- 列号 一个
- XML 文件
(其中行号和列号代表节点的“<”字符)
使用 XDocument API 如何找到该位置的 XNode。
Given the following
- A line number
- A column number
- An XML file
(Where the line and column number represent the '<' character of a node)
Using the XDocument API how do I find the XNode at that position.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
You can do something like that:
请参阅 LINQ to XML 和行号 LINQ Exchange 给出了一个使用 IXmlLineInfo 的示例,该示例对应于您正在寻找:
See LINQ to XML and Line Numbers on LINQ Exchange gives an example using IXmlLineInfo that corresponds to what you're looking for: