vote up 0 vote down star

I have an abstract class as follow:

class BaseReturnType { }    
class DerivedReturnType : BaseReturnType { }    

abstract class BaseClass<T> where T : BaseReturnType    
{        
  public abstract T PolymorphicMethod();    
}    

class DerivedClass : BaseClass<DerivedReturnType>    
{
  public override DerivedReturnType PolymorphicMethod()        
  {            
    return new DerivedReturnType();        
  }    
}

So if add exta parrameter for Generic called T2 how do I put extrac constraining on this?

abstract class BaseClass<T, **T2**> where T : BaseReturnType ???  
    {        
      public abstract T PolymorphicMethod();    
    }
flag

70% accept rate

1 Answer

vote up 4 vote down check
abstract class BaseClass<T, **T2**> where T : BaseReturnType where T2 : BaseTypeForT2

    {        
      public abstract T PolymorphicMethod();    
    }

as per here.

link|flag
1  
More easily found in the "Constraining Multiple Parameters" section of msdn.microsoft.com/en-us/library/… – outis Nov 5 at 3:49

Your Answer

Get an OpenID
or

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