vote up 2 vote down star

What is the syntax for placing constraints on multiple types? The basic example:

class Animal<SpeciesType> where SpeciesType : Species

I would like to place constraints on both types in the following definition such that SpeciesType must inherit from Species and OrderType must inherit from Order:

class Animal<SpeciesType, OrderType>
flag

3 Answers

vote up 6 vote down check
public class Animal<SpeciesType,OrderType>
    where SpeciesType : Speciese
    where OrderType : Order
{
}
link|flag
vote up 4 vote down

You should be able to go :

Class Animal<SpeciesType, OrderType>
    where SpeciesType : Species
    where OrderType : Order
link|flag
vote up 0 vote down

Dang, beat me to it while I was double checking :)

link|flag
Hehe, I gave you an upvote for spelling Species correctly :P – Luke Aug 25 at 20:32
haha, thanks :) – Ryan Lanciaux Aug 28 at 13:08

Your Answer

Get an OpenID
or

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