C# 9.0 introduced a new type of a property accessor called init. The init only property can be assigned only during object creation and can’t be changed further. This enforces immutability. Let’s see ...