Hi,

Here is another one

Take this case:

I've these classes:

class A{ public void M{} }
class B : A {public override void M{} }
class C: B {}

I need, from class C, to call the base class method B.M() rather that A.M()...

Is it possble to do this distinguish?

Bye, thanx