Auto-Implemented Properties
2 sectionsRapid overview
Auto-Implemented Properties
TL;DR
An auto-implemented property (public string Name { get; set; }) is a property whose storage the compiler writes for you: a hidden private backing field (<Name>kBackingField) plus getName / setName accessor methods. At runtime the object hol…
Read →How it works
Q: What is an auto-implemented property?
Read →