| |
|
Select XML Nodes by Name in c# code Question Posted on 27 Feb 2020 Home >> XML >> Xml Questions >> Select XML Nodes by Name in c# code |
Select XML Nodes by Name in c# code
To find nodes in an XML file we will use XPath expressions. Now we use Method XmlNode.SelectNodes which will returns a list of nodes selected by the XPath string.
Below is syntax and using of XML by example
Now comes to reading part we will use below code to read above XML
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(myXMLExampleString);
XmlNodeList xmlnList = xmldoc.SelectNodes("/Students/Student");
foreach (XmlNode xn in xmlnList)
{
string firstName = xn["FName"].InnerText;
string lastName = xn["LName"].InnerText;
Console.WriteLine("Name: {0} {1}", firstName, lastName);
}
The output is:
Name: Adam Sutro
Name: Jim Carry | |
|
|
|
|