I am trying to implement (C#) an interface method in a class, returning a derived type instead of the base type as defined in the interface:
interface IFactory
{
BaseCar GetCar();
}
class MyFactory : IFactory
{
MyCar GetCar()
{
}
}
Where, of course:
class MyCar : BaseCar
{
}
However, the following error happens:
'MyFactory' does not implement interface member 'IFactory.GetCar()'. 'MyFactory.BaseCar()' cannot implement IFactory.GetCar()' because it does not have the matching return type of 'BaseCar'.
Can anyone point me as to why this fails, and how would be the best way to work around it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…