I do not want to disable Visual Studio's normal handling of all exceptions. I am looking for a way to ignore the exceptions raised by the setter of a specific property. I am aware of [DebuggerNonUserCode]
and [DebuggerStepThrough]
, but they don't seem to be applicable to properties, or more specifically setters.
Is this possible?