What is difference between mutable and immutable data types ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is difference between mutable and immutable data types ?

I want to know the difference between string and string builder .

30th Nov 2016, 1:39 PM
MRINAL DUTTA
MRINAL DUTTA - avatar
1 Answer
0
A mutable object, by contrast, has data fields that can be altered. ... An object is mutable if, once created, its state can be changed by calling various operations on it, otherwise it is immutable. Immutable String. In C# (and .NET) a string is represented by class System.String. All string object are immutable in C#, String builder would allow us to work alternatively like as Mutable string in C#.
30th Nov 2016, 1:57 PM
Akwin Lopez
Akwin Lopez - avatar