I am selecting some nodes using XPath, and would like to use wildcards. Is this possible?
Something like the following would be useful:
foreach (XmlNode xml_node in xml_document.SelectNodes("/Data/Customers/D*"))
{
//
}
I am selecting some nodes using XPath, and would like to use wildcards. Is this possible?
Something like the following would be useful:
foreach (XmlNode xml_node in xml_document.SelectNodes("/Data/Customers/D*"))
{
//
}