Say we have a:
class A {
public virtual Do(){}
}
Can we create class B
that overloads A
so that its Do
would be private
/protected
?
Say we have a:
class A {
public virtual Do(){}
}
Can we create class B
that overloads A
so that its Do
would be private
/protected
?