I have a statement where a string is assigned in the following manner:
for (int i = 0; i < x; i++) { Foo.MyStringProperty = \"Bar_\" + i.ToString();
I would use .ToString() out of habit and readability, I am sure you will find better performance saving elsewhere.