vote up 2 vote down star
1

Hello ! i've got a question about how is it possible (if possible :) to use a type reference returned by Type.GetType() to, for example, create IList of that type?

here's sample code :

Type customer = Type.GetType("myapp.Customer");
IList<customer> customerList = new List<customer>(); // got an error here =[

Thank You in Advance !

flag
IList<T> is an interface, so you can't new it. You need to new a type which implements IList<T> such as List<T>. – Brian Rasmussen May 27 at 8:32
jep. thx. got a typo here :) fixed. – vbobruisk May 27 at 8:50

2 Answers

vote up 6 vote down check

Something like this:

Type listType = typeof(List<>).MakeGenericType(customer);
IList customerList = (IList)Activator.CreateInstance(listType);

Of course you can't declare it as

IList<customer>

because it is not defined at compile time. But IList implements IList, so you can use this.

link|flag
2  
Yes, because it's not defined at compile time, there's not much point in using a generic List<> - you might as well use a non-generic container such as ArrayList. – Groky May 27 at 8:33
Actually you should cast the result of Activator.CreateInstance to IList, since it returns an object... – Thomas Levesque May 27 at 8:33
1  
@Thomas: thanks, fixed it. @Groky: It depends. Using the generic list you get runtime type checks when adding items. Or you need to assign it to a field you know (by some context) that it is of the same type. – Stefan Steinegger May 27 at 8:37
vote up 0 vote down

The solution to your problem is provided by Stefan already.

The reason that you can not do IList<customer> is because you can not mix compile time and run-time types this way. A hint when I try to reason about something like this is: how can intellisense figure out what members it must show. In your example this can only be resolved at runtime.

The answer given by Stefan, can be used. However I think it does not help in your underlying problem, because it does not give you intellisense. So I think you have no advantage over using just a non-generic list.

link|flag
As Stefan pointed out in the comments for his answer there are still advandages, such as the generic list preventing the code from adding objects of different types to the list. You do lose intellisense though. – Fredrik Mörk May 27 at 8:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.