New question about the previous question
Previous question was:
I have to populate a few objects that contains 30-50 property from a few linq to xml results
is there a way to populate these object without having to manually write every specific prop=value for every property?
a kind of
(from xml in myXml select xml).ToList<Object>;
in the select, is it possible to use reflection to assign value to my object based on the name of the xml field?