how to read all the list of key using LINQ tried it seems its not working
XDocument fooXML = XDocument.Load(configurationFileName);
var query = from a in fooXML.Element("environment").Elements("add")
select new
{
key = a.Attribute("key").Value,
val = a.Attribute("Value").Value
};
Rajanikant HawaldarPosted Jul 16, 2019, 8:41 AM
Amit PatelPosted Jul 16, 2019, 8:23 AM