// Cannot change source code
class Base
{
public virtual void Say()
{
Console.WriteLine("Called from Base.");
}
}
// Cannot change source code
class Derived : Base
{
public override void Say()
{
Console.WriteLine("Called from Derived.");
base.Say();
}
}
class SpecialDerived : Derived
{
public override void Say()
{
Console.WriteLine("Called from Special Derived.");
base.Say();
}
}
class Program
{
static void Main(string[] args)
{
SpecialDerived sd = new SpecialDerived();
sd.Say();
}
}
Результат:
Вызывается со специальной производной.
Вызывается из Derived./* это не ожидается */
Вызывается из базы.
Как я могу переписать класс SpecialDerived, чтобы не вызывать метод "Derived" среднего класса?
UPDATE:
Причина, по которой я хочу наследовать от Derived вместо Base, - это класс Derived содержит много других реализаций. Поскольку я не могу сделать base.base.method()
здесь, я думаю, лучший способ - сделать следующее?
//Невозможно изменить исходный код
class Derived : Base
{
public override void Say()
{
CustomSay();
base.Say();
}
protected virtual void CustomSay()
{
Console.WriteLine("Called from Derived.");
}
}
class SpecialDerived : Derived
{
/*
public override void Say()
{
Console.WriteLine("Called from Special Derived.");
base.Say();
}
*/
protected override void CustomSay()
{
Console.WriteLine("Called from Special Derived.");
}
}