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.
XDocumentファイルの一部を分離するだけでasp.netを使用してWebページに印刷しようとしています。
例:履歴書(CV)ファイルがあり、「実務経験」の一部のみを印刷したい。誰かアイデアはありますか?
XDocument 内のノードにアクセスする場合は、次の方法で取得できます。
XDocument doc = XDocument.Load("path.xml"); var query = dox.Root.Descendants("Work experience");
これにより、「Work experience」という名前の 0-n ノードが取得されます。
すべてのノードを反復します。
foreach(var exp in query) // do something with the xml node