'XPath 式による問い合わせ ' 'Imports System.Xml.XPath ListBox1.DataSource = iniData.XPathSelectElements("//section[@name='Section2']/data").ToList()
'Linq による問い合わせ Dim s() As String = (From q In iniData.Root.<section>.<data> _ Where q.Parent.@name = "Section3" _ Select q.Value).ToArray()