K
Krishnan
Hi,
Am having a base class that implements an interface (air code) :
class BaseClass : SomeInterface
{
void SomeInterface.ImplMethod()
{
// -- code here --
}
}
class Derived : SomeInterface
{
void SomeInterface.ImplMethod()
{
//NEED TO CALL BASE'S IMPLEMENTATION HERE
// -- code here --
}
}
Without making the implementations public, is there a way to do it?
TIA
Krishnan
Am having a base class that implements an interface (air code) :
class BaseClass : SomeInterface
{
void SomeInterface.ImplMethod()
{
// -- code here --
}
}
class Derived : SomeInterface
{
void SomeInterface.ImplMethod()
{
//NEED TO CALL BASE'S IMPLEMENTATION HERE
// -- code here --
}
}
Without making the implementations public, is there a way to do it?
TIA
Krishnan