Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 asp.net 在网页上打印输出,只是 XDocument 文件的单独部分。
例如:我有一份简历(CV)文件,我只想打印“工作经历”部分。有人有想法么?
如果您想访问 XDocument 中的节点/s,您可以通过以下方式获取它:
XDocument doc = XDocument.Load("path.xml"); var query = dox.Root.Descendants("Work experience");
这将为您提供名为“工作经验”的 0-n 个节点。
遍历所有节点:
foreach(var exp in query) // do something with the xml node