在 如何:使用反映檢視和執行個體化泛型類型 發現該下述語法,才搞清楚要如何取的
Type t = typeof(Dictionary<,>);
實際測試
namespace TypeofSample
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(typeof(Dictionary<,>));
Console.WriteLine(typeof(Demo<>));
Console.WriteLine(typeof(Demo<DateTime>));
}
}
public class Demo<T>
{
}
}
沒有留言:
張貼留言