| c# Programming Glossary: subtwoSpecifying the return type of an abstract method from a Base Class according to a Sub Class http://stackoverflow.com/questions/675857/specifying-the-return-type-of-an-abstract-method-from-a-base-class-according-to  class SubOne Base public override List SubOne Get class SubTwo Base public override List SubTwo Get  I want to create an abstract.. List SubOne Get class SubTwo Base public override List SubTwo Get  I want to create an abstract method that returns whatever.. in SubOne should return List SubOne whereas the method in SubTwo should return List SubTwo . What type do I specify in the signature.. 
 |