To get the string representation of a variable, in this case we’ll use int,
there is no implicit conversion from int to string so you can call the ToString
method:
string s = myInt; //INVALID!!
string s = myInt.ToString(); // Valid!
When concatenating with another string, though, you don’t have