Boris
Boris

Reputation:

using DebugDiag

How can I bind information in .dmp file with source code,i.e find line in source code that caused the problem?

Upvotes: 1

Views: 716

Answers (1)

Richard
Richard

Reputation: 108975

You need to debug information files (.pdb) associated with the specific build being run when the dump was taken. If it was a build with full debugging then it will provide line level information (rather than "pdbonly", which only contains stack frame and method information --- albeit this can tell you a lot, often enough).

See John Robbin's recent blog entries about how pdb files are found: http://www.wintellect.com/CS/blogs/jrobbins/default.aspx

Upvotes: 2

Related Questions