Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can any one please give me a solution to combine xmlNodelists to a single list .

share|improve this question

1 Answer

up vote 3 down vote accepted

I would use LINQ's .Concat method. The problem is that XmlNodeList is IEnumerable as opposed to IEnumerable< XmlNode >. Thus you have to call .Cast< XmlNode > on your XmlNodeLists.

For example:

var singleList = xmldoc.SelectNodes("/a/b/c").Cast<XmlNode>()
     .Concat(xmldoc.SelectNodes("/d/e/f").Cast<XmlNode>())
share|improve this answer
1  
how do i convert the singleList back into XmlNodeList - simple Casting doesnt seem to work – Dukeatcoding May 23 '12 at 13:45
Hello, I tried the above, but the "Concat" method is not available for some reason. I have imported System.Linq and System.Xml.Linq. Please help! – Apeksha Jun 6 '12 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.