Examples of Immutable Types in .Net

前端 未结 5 1281
执念已碎
执念已碎 2021-02-04 10:22

We know the concept of immutability but need to know few immutable types other than

  • String
  • DateTime

Are there more?

5条回答
  •  悲哀的现实
    2021-02-04 11:07

    With .NET 5 and new C# 9.0 release pretty much every object can be immutable now (or contain immutable state in properties)

    More about it here: https://martinstanik.com/2020/10/09/immutable-data-types-after-net-5-release/

提交回复
热议问题