dotnet: property declarations
There are multiple ways to declare a property.
Here are different ways, which vary the access level of the setter, from the most protected to the most open:
{ get; protected init; }
Initialising this value can happen only in the class where this is...
coderlyn.hashnode.dev2 min read