An initializer that makes complex class initialization possible. A class block initializer consists of the static keyword, an open brace character, initialization code, and a close brace character.
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 ...