And Now Base Implementation Is Hidden in this drived class
As far i think this is the way by which you can Change the Visibility
Scope as below example
But It follow Different polimor..ism call rule
class _base
{
//code
protected void f()
{
//code
}
}
class drived : _base
{
public void f()
{
base.f(); // call to base implementation and now it is public
}
}
Regards,
Satheesh
regards
sunil