Call base constructor and other constructor in constructor

Viewed 9807

Title may sound confusing. What I want is to call a constructor of the same class and the constructor of the base class inside a constructor. Maybe my first attempt to solve that may explain my question:

public MyClass(MyClass obj) : base(obj),this() {}

But that notation isn't working. Is there any solution to solve that?

7 Answers
Related