什么是C#泛型方法中的“where T:class”?

前端之家收集整理的这篇文章主要介绍了什么是C#泛型方法中的“where T:class”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这些方法签名有什么区别?
public void T MyMethod<T>(T parameter)

public void T MyMethod<T>(T parameter) where T : class

它们似乎有相同的结果……那么T:class的作用是什么?

解决方法

在第二种方法中,T只能是一个类,不能是结构类型.

Constraints on Type Parameters (C# Programming Guide)

where T : class

The type argument must be a reference [class] type; this applies also to any class,interface,delegate,or array type.

原文链接:https://www.f2er.com/csharp/97878.html

猜你在找的C#相关文章