I would like to have two constructors for a class, as follows:
public MyClass()
{
// do stuff here
}
public MyClass(int num)
{
MyClass();
// do other stuff here
}
Is the above the correct way to achieve my purpose? Is there some kind of shorthand which is better?