多种types参数约束的C#generics语法

可能重复:
通用方法和多个约束

我需要一个具有两个types约束的generics函数,每个函数都inheritance自不同的基类。 我知道如何用一种types来做到这一点:

void foo<T>() where T : BaseClass 

但是,我不知道如何做到这两种types:

 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