call parameterless constructor from another constructor c# code example
Example: c# constructor call another constructor
public Sample(string str) : this(int.Parse(str)) { }
public Sample(string str) : this(int.Parse(str)) { }