我如何创建一个泛型类型accepts only a type of Integer, Long and String.
我知道我们可以限制单个类的类型或通过使用以下代码实现接口
public class MyGenericClass<T> where T:Integer{ }
或处理 int,long 但不是字符串
public class MyGenericClass<T> where T:struct
是否可以创建一个只接受 Integer、Long 和 String 类型的泛型?