More precisely in C# a readonly field of a type can only be assigned to within that type's constructor.
Which means you can't have a partially instantiated object except while the constructor is running.
Which means you can't have a partially instantiated object except while the constructor is running.