do release builds have the same amount of info in exceptions? e.g. will exceptions cought in release

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

do release builds have the same amount of info in exceptions? e.g. will
exceptions cought in release builds contain stack trace etc.?
 
Hello Daniel,

yep, but release, by default, doesnt contain debug symbols. Event u got the
stack u can't "map" it into the code to understand what's going on

For such reasons somes build release with debug info (pdb files) which helps
then use dump with this pdb files to analyze exeptions

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


D> do release builds have the same amount of info in exceptions? e.g.
D> will exceptions cought in release builds contain stack trace etc.?
D>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top