up vote 6 down vote favorite
2
share [g+] share [fb]

How can I use reflection to create a generic List with a custom class (List<CustomClass>)? I need to be able to add values and use propertyInfo.SetValue(..., ..., ...) to store it. Would I be better off storing these List<>'s as some other data structure?

Edit:

I should have specified that the object is more like this, but Marc Gravell's answer works still.

class Foo
{
    public List<string> Bar { get; set; }
}
link|improve this question
is string really a custom class? I was hoping you'd be talking about something like using reflection to invoke a class MyClass that has a property that is a List<SomeOtherClass> where SomeOtherClass is a class I made that has a bunch of properties and constructors etc... – towpse Aug 20 '09 at 19:48
Ok, so string was a bad choice for a class, but it sufficed as an explanation. One can replace string with just about any class so far as my limited knowledge goes, but in the case I was asking for, the class and the type in the list are found by reflection only. – dragonjujo Jan 3 '10 at 0:45
feedback

protected by Jeff Atwood Jun 7 '10 at 7:30

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

2 Answers

up vote 8 down vote accepted
class Foo
{
    public string Bar { get; set; }
}
class Program
{
    static void Main()
    {
        Type type = typeof(Foo); // possibly from a string
        IList list = (IList) Activator.CreateInstance(
            typeof(List<>).MakeGenericType(type));

        object obj = Activator.CreateInstance(type);
        type.GetProperty("Bar").SetValue(obj, "abc", null);
        list.Add(obj);
    }
}
link|improve this answer
what if i have class Foo{ public List<Bar> bars {get; set;} } class Bar{ public byte Id { get; set; } public byte Status { get; set; } public byte Type { get; set; } public Bar(){} } I instantiate foo using reflection, activator.createinstance(). Now I need to populate that list of bars with Bar objects. – towpse Aug 20 '09 at 20:11
should the code you have there compile? I'm told that I still need to supply the declaration of the IList with a type... IList<typeof(type)> or something, I don't know? – towpse Sep 3 '09 at 14:45
I can do var list = Activator.CreateInstance(typeof(List<>).MakeGenericType(GetListType(p.ParameterT‌​ype))); But I don't seem to get a list in return since list doesn't seem to have an Add method... – towpse Sep 3 '09 at 16:21
missing using system.collection; – towpse Sep 3 '09 at 16:55
For brevity, it isn't uncommon to omit the using declarations. – Marc Gravell Sep 3 '09 at 17:03
show 2 more comments
feedback

Here's an example of taking the List<> type and turning it into List<string>.

var list = typeof(List<>).MakeGenericType(typeof(string));

link|improve this answer
That doesn't give you a list of any kind - it gives you a Type – Marc Gravell Nov 24 '08 at 20:08
feedback

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