V
Vladimir Bezugliy
I have next interface:
interface I
{
void F();
}
And next class implements this interface:
class MyClass : I
{
void F(){};
}
What does the modifier have the method MyClass::F() by
default?
interface I
{
void F();
}
And next class implements this interface:
class MyClass : I
{
void F(){};
}
What does the modifier have the method MyClass::F() by
default?