I have a interface named Man.
In this interface I have the method getList() that returns a list of type T (dependent by class that implements the interface).
I have 3 classes that implement Man: small, normal, and big.
Every class has the method getList() thart returns a list of small or a list of normal or a list of big.
interface Man<T>{
List<T>getList();
}
class small : Man<small>{
List<small> getList(){
return new List<small>();
}
}
class normal : Man<normal>{
List<normal> getList(){
return new List<normal>();
}
}
class big : Man<big>{
List<big> getList(){
return new List<big>();
}
}
Now I have the class: Home that contains a parameter bed that's an instance of Man.
Bed can be of various types: small, normal, big. How can I declare the type parameter for bed?
class Home{
Man bed<> // what i must insert between '<' and '>'??
}

small,normal, andbigshare a common base class, if so, I'd recommend adding a where clause to your type definition, and if not, you may want to think about giving them a base class so you can, cause it seems that you are limiting your type to a size. – JG in SD Jan 29 at 23:49Homeclass i.e.: public interface IMan<T> where T : Size{ } public class Home<T> where T : Size { } public abstract class Size { // size objects inherit this } – JG in SD Jan 30 at 15:34