DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0516.cs
123456789
// CS0516: Constructor `Sample.Sample()' cannot call itself // Line: 6 class Sample { public Sample () : this () { } }