class Foo {
int a;
float b;
this( member a, member b ) {
}
}
Why the keyword ?
Why not just: this(a,b) { } ?
class Foo {
int a;
float b;
this( member a, member b ) {
}
}
Why the keyword ?
Why not just: this(a,b) { } ?