¿Es posible lograr el siguiente código? Sé que no funciona, pero me pregunto si existe una solución alternativa.
Type k = typeof(double);
List<k> lst = new List<k>();
¿Es posible lograr el siguiente código? Sé que no funciona, pero me pregunto si existe una solución alternativa.
Type k = typeof(double);
List<k> lst = new List<k>();
Respuestas:
Sí hay:
var genericListType = typeof(List<>);
var specificListType = genericListType.MakeGenericType(typeof(double));
var list = Activator.CreateInstance(specificListType);
Una forma más limpia podría ser utilizar un método genérico. Haz algo como esto:
static void AddType<T>()
where T : DataObject
{
Indexes.Add(typeof(T), new Dictionary<int, T>());
}