STRING CLASS IN C#
WHEN TO USE STRING CLASSSES IN C# LANGUAGE?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dhaval PatelPosted Oct 17, 2011, 7:09 AM
if you want to more details then click below link.
http://www.c-sharpcorner.com/Blogs/7143/string-functions-in-Asp-Net.aspx
VulpesPosted Oct 17, 2011, 10:55 AM
This is because strings are immutable - once you've created them they can't be changed.
If you want a mutable string, then use a char array (fixed length) or a StringBuilder (variable length) instead. These can then be converted to a string when you've completed the operations.
VulpesPosted Oct 17, 2011, 3:57 AM