1
vote
Automatic casting to string in C# and VB.NET
I'd suggest to stay away from raw string concatenation, if possible.
Good alternatives are using string.format:
str = String.Format("Hello {0} workd", Number)
…
