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 mutable
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ajay Kumar (4)
Gopi Chand (4)
Lokendra Singh (2)
Jaimin Shethiya (2)
Gurpreet Arora (2)
Jitendra Mesavaniya (2)
Shaily Dubey (2)
Mark Pelf (2)
Dea Saddler (2)
Aman Gupta (1)
Guest User (1)
Mukesh Kumar (1)
Lalit Bansal (1)
Vineet Kumar (1)
Tom Mohan (1)
Ziggy Rafiq (1)
Ishika Tiwari (1)
Naimish Makwana (1)
Kirtesh Shah (1)
Munib Butt (1)
Omar Maher (1)
Sivasankar Gorantla (1)
Amit Choudhary (1)
Abhishek Singhal (1)
Amit Mohanty (1)
Anu Viswan (1)
Atul Sharma (1)
Vivek Kumar (1)
Satya Karki (1)
Gaurav Kumar (1)
Arpit Jain (1)
Sandeep Sharma (1)
Debasis Saha (1)
Jatin Malik (1)
Kevin Morales (1)
Jasminder Singh (1)
Matthew Cochran (1)
Praveen Kumar (1)
Shivprasad (1)
Related resources for mutable
No resource found
Understanding the Record in C#
8/16/2024 5:53:13 AM.
Learn how records differ from classes, their advantages in creating immutable types, and how they enhance object initialization, equality checks, and more in .NET applications.
Java 21: The Latest Features and Improvements
7/26/2024 4:11:18 AM.
Java 21 introduces significant enhancements including Pattern Matching for Switch, Record Patterns, and String Templates. It also features Sequenced Collections, Virtual Threads, and Scoped Values, st
Understanding C# Records with Example
7/2/2024 5:32:48 AM.
This article delves into the syntax and usage of records, comparing them with classes, and demonstrates how records can simplify code while improving performance and maintainability in .NET applicatio
Exploring Record Classes in Java
6/28/2024 9:03:23 AM.
Discover the simplicity and power of record classes in Java with our comprehensive guide. Explore how Java's record classes, introduced in Java 14, streamline the creation of immutable data struct
Frozen Collections in .NET 8
6/10/2024 7:00:56 AM.
Frozen Collections in .NET 8" explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory manag
Understanding String, StringBuffer and StringBuilder in Java
6/6/2024 4:51:14 AM.
This article delves into the fundamental concepts of String, StringBuffer, and StringBuilder in Java. It explains the differences between these three classes, their specific use cases, and performance
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
Create Immutable Type In C#
6/4/2024 9:52:32 AM.
A public constructor that accepts initialization data is required so that the client can pass-in minimum state for the type to be valid. Private constructor, on the other hand, is used by methods to c
Building a Blockchain in .NET
5/27/2024 5:49:07 AM.
Blockchain technology offers a decentralized, immutable ledger system beyond cryptocurrency. This guide demonstrates building a basic blockchain using .NET, covering key concepts, implementation steps
Ref And Out keyword In C#
5/24/2024 10:17:06 AM.
IN this article, we will learn Ref" and "Out" keywords in C# are used to modify method parameter behavior. "Ref" passes parameters by reference, allowing method changes to ref
The Role Of Blockchain As A Service In The Tech Industry
5/7/2024 11:29:45 AM.
Blockchain as a Service (BaaS) revolutionizes tech by offering scalable, secure, and transparent solutions. It enhances industries like finance, healthcare, and supply chain with decentralized data ma
Creating Immutable Objects in C# with Examples
5/7/2024 6:52:55 AM.
This article explores the concept of immutability in C#, highlighting its benefits and implementation techniques. It covers creating immutable objects using read-only properties, readonly fields, and
Why Strings Are Immutable in .Net
5/1/2024 11:05:35 AM.
Explore the concept of immutable strings in .NET, understanding how strings are allocated in memory, and why they are immutable. Learn how immutability enhances memory management, prevents race condit
.NET 4.5 Read-Only Interfaces
4/23/2024 8:58:19 AM.
.NET Framework 4.5 introduced read-only interfaces, facilitating immutability in C#. These interfaces enforce that implementing classes cannot modify properties, enhancing code predictability and safe
What is Constants(const) in C#?
4/22/2024 6:08:02 AM.
Constants are essential elements in any programming language, providing a way to define values that remain unchanged throughout the execution of a program. This guide explores the concept of constants
C# 9 Record Types: Immutable Value Types, Syntax, & Usage
4/18/2024 9:30:53 AM.
Records in C# provide immutable data structures for representing data. They offer concise syntax for declaring classes with value-based equality, read-only members, and built-in methods like ToString(
A Guide To Crafting Immutable Objects With C# 10's Init-Only Properties
4/16/2024 10:51:36 AM.
Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates ho
Exploring Frozen Collections in .NET 8 With Benchmarking
4/14/2024 5:32:01 AM.
Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I presen
Immutable Arrays in JavaScript
2/21/2024 4:31:55 AM.
In this article, we will learn how to work with Immutable Arrays in JavaScript. Explore the world of immutable arrays in JavaScript, understanding their creation using the spread operator, benefits, a
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#
C# 9.0 - Introduction To Init-Only Property
10/30/2023 9:02:09 AM.
C# 9.0 introduced a new feature called Init-Only Properties, enhancing the language's capabilities for defining immutable types. Init-only properties allow you to create read-only properties that
Using Records In C# 9.0
10/20/2023 7:26:18 AM.
C# 9.0 introduced a significant language feature known as records, which simplifies the creation of classes for immutable data. Records provide a concise and elegant way to define classes for storing
Tuples In C# 7 - What Are They And How Can I Use Them?
9/20/2023 8:30:43 AM.
Tuples In C# 7 - What Are They And How Can I Use Them?
Why String Is Immutable
9/12/2023 4:49:40 AM.
A string is a reference data type in C#. A string is a sequential collection of characters that is used to represent text. The value of the String object is the content of the sequential collection of
Arrays in F# - A Mutable Collection
9/11/2023 9:12:44 AM.
In this article you will learn about Arrays in F#. Arrays in F# are mutable data type.
List In Kotlin
9/4/2023 5:49:50 AM.
In this article, we delve into Kotlin's Lists, fundamental in managing collections of items. Learn about Immutable and Mutable Lists, key methods, and their practical use cases.
Structs in C#
8/28/2023 4:25:02 AM.
Discover the significance of C# structs - lightweight alternatives to classes. Efficiently manage memory and enhance performance with value types while considering scenarios and pitfalls for optimal i
Methods in Rust
4/28/2023 9:31:16 AM.
Rust methods, including their syntax, usage, and benefits.
How To Use Structure In Rust?
4/27/2023 1:07:43 AM.
Structure in Rust and its Feature, Method, Mutable Structure
C# 12's Records: A Game Changer for Data Objects and Immutable Types
4/17/2023 10:25:15 AM.
C# 12's Records: A Game Changer for Data Objects and Immutable Types
C# 11 - Immutable Object And Defensive Copy
2/27/2023 5:50:10 AM.
We discuss some issues related to Immutable Object and “defense copy”.
C# 11 - Immutable Object Pattern
2/22/2023 10:36:48 AM.
Beginner’s tutorial on Immutable Object Pattern with examples. An Immutable Object (Internal Immutability) in C# is an object whose internal state cannot be changed after it is created. That is differ
IEnumerable<T> Vs IReadOnlyList<T>
11/28/2022 7:22:02 AM.
Understanding the differences between IEnumerable<T> and IReadOnlyList<T> when returning immutable collection from method
All About C# Immutable Classes
9/15/2022 10:13:55 AM.
In this article, we are going to cover all the necessary information you need to know about Immutable classes in C#.
Mutable And Immutable Class In C#
2/4/2022 10:31:07 AM.
In this article, we are going to learn about mutable and immutable class in C#.
What Is LevelDB
12/28/2021 1:34:49 PM.
This article will describe the most commonly used database in blockchain technology; LevelDB which is an example of a NoSQL database and stores data as key-value.
MVVM Architecture with LiveData Android
3/15/2020 12:45:34 PM.
In this article, you will learn about MVVM Architecture with LiveData Android.
Python Basics: Understanding The Variables
1/28/2020 2:05:44 PM.
In this article you will learn about Python variables, especially Numbers, Strings and Lists.
Creating Immutable Class in Java
9/26/2019 10:49:11 PM.
This article shows how to create immutable classes in Java using suitable examples for a better explanation.
Learn StringBuffer Class in Java: Lecture 7
9/26/2019 6:19:28 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 6
9/26/2019 6:09:46 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Learn StringBuffer() Class in Java: Lecture 1
9/26/2019 5:24:49 AM.
This article explains the StringBuffer() class in Java and Java strings in general.
Working Of String In Java
9/19/2019 12:23:55 AM.
In this article we discuss working of string in java and also discuss Immutable string, String comparison and string concatenation.
AngularJS 2.0 From The Beginning - Immutable JS - Day Twenty Two
3/29/2017 2:30:45 PM.
In this article, we will discuss about Immutable js.
Immutable Object In JavaScript Using Object.freeze
11/15/2016 11:29:13 PM.
Want to make Immutable objects in JavaScript? Heard about Object.freeze() ? This video answers your questions regarding immutable objects in JavaScript and how can we create one using Onject.freeze()
Programming With Immutable, Funtional Objects: Eliminating Conditionals
5/27/2015 2:53:37 AM.
This article is an introduction to a series that will show techniques to be used in modern software systems, blending together functional and object-oriented programming.
String is Immutable in C#
5/4/2014 11:49:54 AM.
Here we learn the behavior of strings, in terms of their performance, especially when an operation is performed on it, like we append a string to it.
XML Serialization/Deserialization of Immutable Objects
9/29/2012 5:46:20 AM.
Here’s a brief example of how to serialize and deserialize immutable objects to XML.
Method Parameter Types in C#
7/10/2012 11:12:45 PM.
In this article I will explain you about Method Parameter Types in C#.
Demystifying: What does “Strings are immutable” means?
5/21/2012 7:09:26 AM.
In this article we will explain about String and StringBuffer.
Data Types in F#
5/13/2012 6:27:17 AM.
In this article you will learn about the mutable and immutable data types of F#. If you want to understand that then take a Quick review.
The Concept of Functions And Variables in F#
5/13/2012 5:36:38 AM.
In this article you will learn about Functions and Variables of F#. This is for the people who want to have a Quick Review.