Например, в моем классе Foo есть два метода ctor, как я могу вызвать ctor без параметров в другом ctor?
class Foo {
public Foo() {
// initialized this class
}
public Foo(int a, int b) {
// initialized by Foo(), how do I call Foo() here ?
.... // other initializing here
}
}