1、泛型
java和C#声明泛型类都是class<t>
Generic<Integer> genericInteger = new Generic<Integer>(123456);//12345是构造函数
MyClass<int> obj = new MyClass<int>();
C#中的泛型方法是 function<t>(t arg) 调用 function<int>(1);
https://blog.csdn.net/haukwong/article/details/7840158
java中的泛型方法 <t> t function(t arg) 调用 string name=function("123")
https://blog.csdn.net/s10461/article/details/53941091