I use visual studio 2017 And in Exception settings common language runtime exceptions is checked
[System.Diagnostics.DebuggerNonUserCode]
[System.Diagnostics.DebuggerHidden()]
public static void testFunc()
{
try
{
throw new Exception();
}
catch {}
}
the Debuger stop on testFunc();
and show exeption
there is why to ignore specific function in the code?
Not in GUI settings (the debugger does not break to other programmers)
In other words how to uncheck that in the code