development

일반 생성

big-blog 2020. 9. 25. 08:03
반응형

일반 생성 유형을 포함하는 변수가있는 유형 인스턴스


다음 코드를 얻을 수 있습니까? 작동하지 않는다는 것을 알고 있지만 해결 방법이 있는지 궁금합니다.

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>());
}

이 시도:

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

참고 URL : https://stackoverflow.com/questions/2078914/creating-a-generict-type-instance-with-a-variable-tained-the-type

반응형