7

我想创建一个强类型列表并在运行时决定类型。这是我的代码。我认为它应该可以工作,但它没有:)

        Type elementType = Type.GetType(parts[0].Trim(),false,true);
        var elementsBeingSet = new List<elementType>();

您是否知道如何创建一个强类型列表,我将在运行时决定其类型?

重复:这是其他版本:

4

1 回答 1

20

使用Type.MakeGenericType(type[])

Type elementType = GetElementType(); // get this type at runtime
Type listType = typeof(List<>);
Type combinedType = listType.MakeGenericType(elementType);
IList elements = (IList) Activator.CreateInstance(combinedType);

您必须使用IList来保留结果 - 因为您不知道将在运行时使用的实际类型。

对于具有多个类型参数的泛型类型,您可以使用类似Dictionary<,>.

另请参阅http://msdn.microsoft.com/en-us/library/system.type.makegenerictype.aspx

于 2008-11-28T17:42:03.030 回答