**Version Used**: 17.13.0 Preview 2.1 ```cs class C { // "Important note" private int a; public int A => a; } ``` Use auto property: ```cs class C { public int A { get; } } ```