PreviousNext

Introducing C# 9: Records

by anthonygiretti, 2020-06-17T04:29:52.056Z

C# 9 introduces Init-only properties that allow to make individual properties immutable. C# 9 introduces another great feature that enable a whole object to be immutable and make it acting like a value: Records. Let’s see in this article how Records work.

Read More