Создать список <T>с помощью GetType () - PullRequest
3 голосов
/ 11 августа 2010

Можно ли создать список или IEnumerable с помощью GetType ().

// If T is Type of Contact I want to Return List<Contact>

Test(typeof(Contact));//return List<Type>

    public static IEnumerable<T> Test<T>(T t)
    {
        return new List<T>();  //return List<Type>

    }

1 Ответ

9 голосов
/ 11 августа 2010
 public static IList GetList(Type type)
 { 
    return (IList) Activator.CreateInstance(typeof(List<>).MakeGenericType(type));
 }
...