Is there any difference between & and + operators while concatenating string? if yes, then what is difference? And if No, then why below code generating exception?
My 2 cents:
If you are concatenating a significant amount of strings, you should be using the StringBuilder instead. IMO it's cleaner, and significantly faster.