the this keyword lets a constructor call a different constructor of same class 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)) { }