Manipulating Dynamic object on C# [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionI have a C# class that inherits from DynamicObject and using serialization is creating me an instance for a given xml.
My issue: Now i have to generate one dynamic object from two equal (with same structure) xml files selecting some type of elements from the开发者_JS百科 second xml only.
Do you have any link to any article where i could find techniques to do this?
Here you can find some documentation:Creating and Using Dynamic Objects
I think you can also use linq to xml for selecting the things that you need from the xml's.
精彩评论