vote up 5 vote down star

I need a generic function that has two type constraints, each inheriting from a different base class. I know how to do this with one type:

void foo<T>() where T : BaseClass

However, I don't know how to do this with two types:

void foo<TOne, TTwo>() where TOne : BaseOne // and TTwo : BaseTwo ???

How do you do this? (using .NET 2)

flag

Duplicate of this question: stackoverflow.com/questions/588643/… – Luke Jun 8 at 16:09

1 Answer

vote up 13 vote down check
void foo<TOne, TTwo>() 
   where TOne : BaseOne
   where TTwo : BaseTwo

More info here:
http://msdn.microsoft.com/en-us/library/d5x73970.aspx

link|flag
2  
Search for "Constraining Multiple Parameters" if you don't want to read it all. – RichardOD Jun 8 at 15:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.