What option in Visual Studio let catching exception where it occurred?
- by macias
VS 2010. The same WPF project, debug mode, two computers:
A -- when exception occurrs the caret is placed at the point of exception
B -- when the exception occurrs, correct exception is placed but always caret is placed at "win.ShowDialog()" in App.xaml.cs -- this is main entry for showing & running my application, in such case it is very tiresome to track down where the exception occurred
What kind of settings control such behaviour? Of course I would like to switch B, so when exception hits I would be place at the point of exception, not at the main entry.