if I have an integer (int i), and I want to append it to the end of a string expression, does this work:
string str = "number_is_" + i;
so that the desired value of str is
number_is_1