Call one constructor from another

Like this:

public Sample(string str) : this(int.Parse(str)) { }

Leave a Comment