A
Alex
Given this base class:
class Base
{
Base(){}
}
Are these the same:
class Test : Base
{
Test(){}
}
class test: Base
{
Test():base(){}
}
class Base
{
Base(){}
}
Are these the same:
class Test : Base
{
Test(){}
}
class test: Base
{
Test():base(){}
}