base() and this() constructors best practices
: base(…) If you omit the call to a base constructor it will call the default base constructor automatically. It is mandatory to call a base constructor explicitly if there is no default constructor. Even if there is a default constructor you may still wish to call a different constructor than the default constructor. In … Read more