If A is a template for actual type, then why is typeof(A<,>) allowed?

后端 未结 3 727
不知归路
不知归路 2021-01-18 06:06
class Program
{
    static void Main(string[] args)
    {
        Type t = typeof(A<,>);
        Console.WriteLine(typeof(A<,>)); // prints A\'2[T1,T2]
          


        
3条回答
提交回复
热议问题