public SomeBase(OtherThings otherThings) : this()
 {
 }
Exemplo n.º 2
0
    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
 }