Related resources for Immutability
  • Functional programming in C# - Introduction4/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 Props3/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 Java7/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 Python2/17/2022 4:37:45 AM. The article explains in detail the frozenset function in Python.
  • Deep Dive Into Records In C# 910/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 Bugs11/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.