can any one explain with examples
Related Discussion: Most efficient way to concatenate strings?
In C++ you could do this:
std::string hello = "Hello, world!\r\n"; hello[7] = 'W';
In C#, you can't do this. Strings can't be changed.