↧
Answer by MarcinJuraszek for Get values of XDocument
Product is not a direct child of Itens, and that's why you're getting an exception. Try changing you loop source:foreach (XElement item in xmlDocument.Descendants("Itens").Elements("Item"))
View ArticleGet values of XDocument
I know that we have a lot of topics about xml but i cant get this to work.I have this xml:<OrderRoot><Order><Client>Company...
View Article