31
나는 다음과 같은 코드가있는 경우 : I 유형 매개 변수 (들) "anInstance"를 보면, 인스턴스화 된 찾을 수있는 방법반사 - System.Type 인스턴스에서 일반 매개 변수를 얻기
MyType<int> anInstance = new MyType<int>();
Type type = anInstance.GetType();
을 형식 변수? 가능한가?
나는 다음과 같은 코드가있는 경우 : I 유형 매개 변수 (들) "anInstance"를 보면, 인스턴스화 된 찾을 수있는 방법반사 - System.Type 인스턴스에서 일반 매개 변수를 얻기
MyType<int> anInstance = new MyType<int>();
Type type = anInstance.GetType();
을 형식 변수? 가능한가?
Type.GetGenericArguments을 사용하십시오. 예를 들면 :
using System;
using System.Collections.Generic;
public class Test
{
static void Main()
{
var dict = new Dictionary<string, int>();
Type type = dict.GetType();
Console.WriteLine("Type arguments:");
foreach (Type arg in type.GetGenericArguments())
{
Console.WriteLine(" {0}", arg);
}
}
}
출력 :
Type arguments:
System.String
System.Int32
사용 Type.GetGenericArguments().
using System;
using System.Reflection;
namespace ConsoleApplication1 {
class Program {
static void Main(string[] args) {
MyType<int> anInstance = new MyType<int>();
Type type = anInstance.GetType();
foreach (Type t in type.GetGenericArguments())
Console.WriteLine(t.Name);
Console.ReadLine();
}
}
public class MyType<T> { }
}
출력 : INT32
예를 들어