Another dumb question.
I have in C# ancestor class
class A {
virtual void methodA() {}
};
and its descendand, that overrides methodA.
class B {
override void methodA() {
...
so how can I call A.methodA() from B.methodA()?
Another dumb question.
I have in C# ancestor class
class A {
virtual void methodA() {}
};
and its descendand, that overrides methodA.
class B {
override void methodA() {
...
so how can I call A.methodA() from B.methodA()?
base.methodA()