1 2 3 4 5 6 7 8 9
// CS0516: Constructor `Sample.Sample()' cannot call itself // Line: 6 class Sample { public Sample () : this () { } }