Call one constructor from another
Call one constructor from another
Call one constructor from another
Re: Call one constructor from another
Like this:
```
public Sample(string str) : this(int.Parse(str)) { }
```
```
public Sample(string str) : this(int.Parse(str)) { }
```