Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to debug external code after exception in .NET (vs2008)

Have Exception thrown in my app. In callstack I can see program stops at property's getter: FullName.get()

I'm trying to find out what part of code is generating exception.
But in call stack I can see only 3 entries:

3) FullName.get()
2) [External Code]
1) myApplication.exe

Is is a way to debug external code somehow ?

like image 656
Maciej Avatar asked Apr 27 '26 20:04

Maciej


1 Answers

http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx

This blog shows how to show framework code in the debugger.

like image 178
AndreasN Avatar answered Apr 29 '26 10:04

AndreasN