i have:
IEnumerable<Foo> foolist
and i want to convert this to:
IEnumerable<Bar> barlist
is there a linq / lambda solution to move from one to the other
both objects (foo and bar) have simple properties that i am going to convert. for example:
bar.MyYear = foo.Year
they each have about 6 properties