C#
.NET
Programming
C# 9 — Records
Records are a reference type that provides synthesized methods to provide value semantics for equality. Records are immutable by default.
November 29, 2020
4 Min read
A collection of 2 posts
Records are a reference type that provides synthesized methods to provide value semantics for equality. Records are immutable by default.
.NET 5 was released few weeks ago, and with it we got a new release of C# 9 packed with a bunch of new features, Let's go over 3 of them, see how to use them and identify where they are useful and where you may not want to be using them.