No, you canโt. Automatic properties are compiled in the same way as backup storage. I think there is no reason to allow breakpoints, because somewhere you have to assign them, check your property there.
private bool TestProperty { get; set; }
compiled as
[CompilerGenerated] private bool <TestProperty>k__BackingField; [CompilerGenerated] private void set_TestProperty(bool value) { this.<TestProperty>k__BackingField = value; } [CompilerGenerated] private bool get_TestProperty() { return this.<TestProperty>k__BackingField; }
source share