.Net
-
Different between String And StringBuilder
-
Different between String And StringBuilder
Google is your friend: https://www.google.com/search?q=Different+between+String+And+StringBuilder&ie=utf-8&oe=utf-8[^] Bonus recommendation: A free PDF-book on programming in C#: http://www.introprogramming.info/[^]
If the brain were so simple we could understand it, we would be so simple we couldn't. — Lyall Watson
-
Different between String And StringBuilder
In String Builder When we change the variable value then it does not create new object,It modify again and again same object,but in string if we modify the string variable value then it again and again create a object.So if we have to update string again and again then recommended to use String Builder always.
-
Different between String And StringBuilder