C# 9 Deep Dive: Records | Dave Brock

In the previous post of this series, Dave Brock discussed the init-only features of C# 9, which allowed us to make individual properties immutable. That works great on a case-by-case basis, but the real power in leveraging C# immutability is when we can do this for custom types. This is where records shine.

This is the second post in a five-post series on C# 9 features in-depth.

Source: C# 9 Deep Dive: Records | Dave Brock

Leave a Reply