On Tuesday, 27 May 2014 at 14:55:33 UTC, Luís Marques wrote:
BTW 2, is `this(int = 0)' the best workaround (still?) for the fact that I want the ctor to be called, even if it doesn't really require any parameter?

AFAIK, no, since "Foo()" will actually do nothing. "this(Arg = dummy)" is actually useless, unless you manually call "__ctor", so I strongly advise against that.

Reply via email to