↧
Answer by jdweng for How to compare values from XML elements and sub elements...
Try xml linq. I used a dictionary to group cards by number using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Xml.Linq; namespace...
View ArticleHow to compare values from XML elements and sub elements in c#
I want to compare the value from the user input to the values from the XML elements and select values from another XML element. For example: Please consider the below XML: <?xml version="1.0"...
View Article