public SomeBase(OtherThings otherThings) : this() { }
public SomeClass(OtherThings otherThings) : base(otherThings) { CommonStuff(); // Do stuff with otherThings }
public SomeClass(OtherThings otherThings) : base(otherThings) // :this() <----- This is not legal syntax { // Do stuff with otherThings }