Question : Is it possible to convert an array of objects to a generic list?

I have this:
object[] makes = GetData();

And want something like this:
List items = (List) makes;

Answer : Is it possible to convert an array of objects to a generic list?

>>  There is no single line of code that would convert the array into a generic list.

This is not true if you have Framework installed 3.5:
1:
2:
3:
object[] makes = GetData();

List items = new List(makes.Select(item => (CatalogQualifier)item));
Random Solutions  
 
programming4us programming4us