C#中的以下等效项是什么?

template<class T>
struct S
{
   typedef T MyType;
};

最佳答案

泛型和模板是不同的野兽。没有对等的东西。

关于c# - 通用类型检测,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14272211/

10-11 02:41