TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Immutability
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sanjay Kumar (1)
Jaimin Shethiya (1)
Tural Suleymani (1)
Priyanka Jain (1)
Naimish Makwana (1)
Ziggy Rafiq (1)
Rohatash Kumar (1)
Ashish Bhatnagar (1)
Sameer Shukla (1)
Anu Viswan (1)
Mehreen Tahir (1)
Zoran Horvat (1)
Related resources for Immutability
No resource found
Detailed Explanation of Builder Design Pattern in C#
7/22/2024 6:26:29 AM.
The Builder design pattern is a creational pattern used to construct complex objects step by step. It separates the object's construction from its representation, allowing for varied configuration
Difference between String & StringBuilder in .NET C#
6/5/2024 5:21:33 AM.
In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation with
Functional programming in C# - Introduction
4/2/2024 8:55:30 AM.
Lets learn the concept of functional programming, its usage and why functional programming is important
React State: Managing Dynamic UI with setState() and Props
3/6/2024 9:29:14 AM.
In React, "state" represents the internal data of a component, which can change over time due to user interactions or other factors. It's managed using the setState method, allowing comp
Immutability: Creating Custom Immutable Types in C#
1/4/2024 10:41:56 AM.
In this article we will discuss about how to create custom immutable type in c#
Understanding Mutability and Immutability in C#
11/27/2023 4:12:46 AM.
short article on Understanding Mutability and Immutability in C#
DateTime In C#
9/12/2023 10:54:06 AM.
In C#, DateTime is a fundamental data type that represents dates and times. It is part of the System namespace and provides a rich set of methods and properties for working with dates and times. Here
StringBuffer Class In Java
7/19/2022 9:01:49 PM.
A StringBuffer represents a string that can be modified. Whenever there is a concatenation operator (+) used with strings, a StringBuffer object is automatically created.
Inspecting Frozenset In Python
2/17/2022 4:37:45 AM.
The article explains in detail the frozenset function in Python.
Deep Dive Into Records In C# 9
10/26/2020 9:48:38 AM.
In this article, you will learn about deep dive into one of the most exciting features in C# 9, the records.
Functional Programming In C++
11/26/2018 10:42:29 AM.
This article will show you an alternative way of using C++; How to write functional code in C++. You’ll see how to write more concise, safer, readable, reasonable code.
.NET String Immutability and Related .NET Framework Bugs
11/19/2013 3:38:28 PM.
This article which explains several aspects of the .NET String class internal structure. Examples and workarounds are given for three distinct manifestations of a reported bug related to the TextRenderer.MeasureText function used with PathEllipsis and ModifyString flags.