Related resources for immutable
  • .NET 4.5 Read-Only Interfaces4/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, & Usage4/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 Properties4/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 Benchmarking4/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 JavaScript2/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 Property10/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.010/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 Immutable9/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 Collection9/11/2023 9:12:44 AM. In this article you will learn about Arrays in F#. Arrays in F# are mutable data type.
  • 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 Rust4/28/2023 9:31:16 AM. Rust methods, including their syntax, usage, and benefits.
  • C# 12's Records: A Game Changer for Data Objects and Immutable Types4/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 Copy2/27/2023 5:50:10 AM. We discuss some issues related to Immutable Object and “defense copy”.
  • C# 11 - Immutable Object Pattern2/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&lt;T&gt; and IReadOnlyList&lt;T&gt; when returning immutable collection from method
  • All About C# Immutable Classes9/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 LevelDB12/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.
  • Why Strings Are Immutable in .Net12/7/2020 2:34:13 AM. In this article we will learn why string are immutable in .Net.
  • Create Immutable Type In C#11/23/2020 4:38:11 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
  • Python Basics: Understanding The Variables1/28/2020 2:05:44 PM. In this article you will learn about Python variables, especially Numbers, Strings and Lists.
  • Creating Immutable Class in Java9/26/2019 10:49:11 PM. This article shows how to create immutable classes in Java using suitable examples for a better explanation.
  • Working Of String In Java9/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 Two3/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 Conditionals5/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 Objects9/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.