Hi,
Say MyClass inherits from BaseClass, and I write the following constructor for MyClass:
public MyClass()
{
DoSomething();
}
When MyClass constructor is called, does it call automatically the BaseClass constructor (even though I didn't explicitly wrote this) ?
Thanks !