i'm trying to use NativeXml, yes its more simple than xmldocument, but i still cannot find a solution to find node that have multiple name..
<item>
<name>Manggo Salad</name>
<feature>Good</feature>
<feature>Excelent</feature>
<feature>Nice Food</feature>
<feature>love this</feature>
</item>
how to find "feature" ??
TXmlNode.FindNodes
takes the NodeName and aTXmlNodeList/TsdNodeList
which will be filled with all nodes matching this name. If you don't want it to be recursive useNodesByName
.