使用包含Type的variables创build通用<T>types实例

是否有可能实现以下代码? 我知道这是行不通的,但我想知道是否有解决方法?

Type k = typeof(double); List<k> lst = new List<k>(); 

就在这里:

 var genericListType = typeof(List<>); var specificListType = genericListType.MakeGenericType(typeof(double)); var list = Activator.CreateInstance(specificListType); 

一个更清洁的方法可能是使用一个通用的方法。 做这样的事情:

 static void AddType<T>() where T : DataObject { Indexes.Add(typeof(T), new Dictionary<int, T>()); }