C Sharp (C#) - Inheritance
Identify the problem in this constructor chaining code:
class Gadget {
public Gadget() : this() {
Console.WriteLine("Hello Gadget");
}
}