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.
XMLファイルから属性を抽出し、それらをリストビューに追加する必要があります。
Xpath(winforms)を使用して属性を抽出するにはどうすればよいですか?
例えば:
<element foo="1" meh="2" lol="3" hi="4">meh</element>
たとえば、「foo」と「lol」内のデータを抽出するにはどうすればよいですか?(つまり、「1」と「3」)
/element/@foo /element/@lol
もちろん、ac#アプリケーションからそのようなノードを取得したい場合は、次のようなことを行う必要があります。
XmlDocument o = new XmlDocument(); o.Load(@"c:\file.xml"); var attribute1 = o.SelectSingleNode("/element/@foo");