Let's say I have this property
public ISetting Setting { get; set; }
How can I get breakpoint at the set? So that the program will pause when something is setting a value.
I try to make it this way
public IDatabaseConnectionSetting ConnectionSetting {
get;
set;
}
And put the breakpoint on the set;
line, but still it doesn't work. The red breakpoint highlighter highlights the whole property declaration