Let\'s say I have two char variables, and later on I want to concatenate them into a string. This is how I would do it:
char
char c1, c2; // ... Str
Unless your app needs every ounce of performance, write the code that's quicker to write and easier to read. "" + is a slower-to-execute syntax, but it certainly seems easier to read every time I've used it.