猿问

一个不解的问题

public class test
{
}

public class test3<T>

{

        public string saytype<T>(test3<T> o)
        {
            return o.GetType().ToString();
        }

}

在主函数中这样写:

test3<test> aa = new test3<test>();

Console.WriteLine(aa.saytype(aa));

输入的是:test.test3`1[test.test]

提问:其中输出的`1是什么意思?


慕村225694
浏览 388回答 2
2回答
随时随地看视频慕课网APP
我要回答