Skip to main content

Why and how the C# strings are immutable? Explained with examples

C# strings are immutable, meaning that once a string object is created, its value cannot be changed. Instead, any operation that modifies a string, such as concatenation or replacement, creates a new string object with the modified value.

One reason for this immutability is that strings are often used as keys in dictionaries or as elements in collections, and immutable objects are more efficient for these uses because their hash code does not change.

Another reason is that strings are often used in multithreaded environments, and immutability allows multiple threads to access the same string object without the risk of data corruption. 


Example:

The string which is a reference type stored in a memory heap



Suppose we are creating a string str and assign a value  "a";

That will be stored in the memory location like this




Again if we assigning another value to the same string that is "b" 


This will not replace the existing value



Instead this will create another memory location like this 



This characteristics is called immutable

The memory will grow as you assign new values to the same string



As a memory management best practices if the string is involved in multiple value assignment it's better to use mutable string handle StringBuilder 

  

 In summary, C# strings are immutable because it is more efficient for their use cases and it allows them to be used in a safe way in multithreading scenarios.

 

This concept is also explained in a video here

Comments

Popular posts from this blog

Task Parallel Library (TPL) and Akka.NET: Differences

Task Parallel Library (TPL) and Akka.NET are both powerful tools in the .NET ecosystem for handling parallelism and concurrency, but they serve different purposes and use different models of computation. Here are some key differences:s 1.    Actor Model vs Task-Based Model: Akka.NET is built around the actor model, where actors are the fundamental units of computation and they communicate by exchanging messages. TPL, on the other hand, is task-based. It's designed to make developers more productive by simplifying the process of adding parallelism and concurrency to applications. TPL uses tasks (which are independently executing work units) and provides various ways to control and coordinate them. 2.    Fault Tolerance: One of the key features of Akka.NET is its built-in fault tolerance. It has a "let-it-crash" philosophy, where the system is designed to self-heal from errors. If an actor fails, its parent actor can decide on the supervision strategy: either to resta

Extension Methods - Advanced

Here we will see how can we use the Extension Methods in advanced manner in other types Imagine you often need to retrieve items from a List based on a custom criterion that the built-in LINQ methods don't cover. Extension Methods for Lists: Filtering based on Custom Criteria And the output would be   Extending Enums: Displaying Descriptive Strings Output: Extending DateTime: Calculating Age     Output: The code samples can be found at https://github.com/oneananda/C_Sharp_Examples/tree/main/ExtensionMethods