可能的重复: 泛型方法和多重约束
我需要一个具有两个类型约束的泛型函数,每个约束都继承自不同的基类。我知道怎么用一种方法:
void foo<T>() where T : BaseClass
然而,我不知道如何做到这两种类型:
void foo<TOne, TTwo>() where TOne : BaseOne // and TTwo : BaseTwo ???
怎么做呢?(使用。net 2)
可能的重复: 泛型方法和多重约束
我需要一个具有两个类型约束的泛型函数,每个约束都继承自不同的基类。我知道怎么用一种方法:
void foo<T>() where T : BaseClass
然而,我不知道如何做到这两种类型:
void foo<TOne, TTwo>() where TOne : BaseOne // and TTwo : BaseTwo ???
怎么做呢?(使用。net 2)
当前回答
void foo<TOne, TTwo>()
where TOne : BaseOne
where TTwo : BaseTwo
更多信息: https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/generics/constraints-on-type-parameters#constraining-multiple-parameters
其他回答
void foo<TOne, TTwo>()
where TOne : BaseOne
where TTwo : BaseTwo
更多信息: https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/generics/constraints-on-type-parameters#constraining-multiple-parameters