Related resources for Immutable Type
  • 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
  • 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