Posts by EvMendonca • 1 point
1 post
-
-1
votes6
answers1227
viewsA: Property readonly . NET
If you want a property readonly make it have only the Get, for example: public int Meuinteiroreadonly { get; } This will cause this property to be defined only in the constructor of its class, which…