C#: if a class has two constructors, what is the best way for these constructors to share some code? [duplicate] August 13, 2023 by Tarik Just chain to the common constructor… public MyObject(int setZ) : this() { z = setZ; }