Моя ситуация такова:
public class InheritedClass : BaseClass
{
public override void SomeMethod()
{
AnotherMethod();
}
public override void AnotherMethod()
{
}
}
public class BaseClass
{
public virtual void SomeMethod()
{ }
public virtual void AnotherMethod()
{ }
}
Так какой метод вызывается, когда я вызываю InheritedClassInstance.SomeMethod
?Он вызывает InheritedClassInstance.AnotherMethod
или AnotherMethod
базового класса?