Answers for "c# read xml attribute value"

C#
0

c# read xml tag value

XmlNodeList nodeList=
(infodoc.SelectNodes("configuration/Settings/directory"));

foreach (XmlNode elem in nodeList)
{
string strValue = elem.Attributes[1].Value;

}
Posted by: Guest on October-31-2021

C# Answers by Framework

Browse Popular Code Answers by Language