Make Generic Type
I been working with .Net for a number of years now, and the more I work with, the more genric my code is getting. Building a generic object parser has been something I have spent a lot of time on. Back in the days of data sets, moving data from a dataset to an object model representing data model has been a constant pain point. You would think they would have this problem nailed by now. But this is still the place you spend a lot of time. If it's not trying to build some kind of generic parser to make life easier, then it's trying to figure out how the latest Mirosoft or open source parser/mapper/ORM works, and 90% of that time is spent trying to figure out why it's not working in your specific case. One of the constrant road block i have encountered during my many attempts to build a custom parser has been to create a generic list of type T. Mapping simple object types is easy using reflection. But once you get to a child element you need to create a generic list of type T...