I have a public property in some class. I want a default value -1 for this property without an private variable like _MyField(because too many properties in this class, i won\'t
Just set a this.MyAttr = -1 assignment in the object's constructor.
this.MyAttr = -1