Greetings!
I have a hierarchy of classes, with an abstract class that defines the
method Read() at the top of it. Each class in the hierarchy has a
Read() method, and I need to be able to call Read() from the highest
possible level of the hierarchy and get the correct Read() function.
Public class AbstractClass
{
abstract void Read();
}
Public class A : AbstractClass
{
public override void Read();
}
Public class B: A
{
public override void Read();
}
The compiler complains that A has no overridable function named Read().
Is it not possible to do this?
Thank you very much.
RobR