用于多种类型参数约束的C#泛型语法
可能重复:
通用方法和多个约束
我需要一个通用函数,它有两个类型约束,每个约束都从不同的基类继承。 我知道如何用一种类型来做到这一点:
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
更多信息在这里:
http://msdn.microsoft.com/en-us/library/d5x73970.aspx
上一篇: C# generics syntax for multiple type parameter constraints
下一篇: How to get the type of T from a member of a generic class or method?