How to get a stack trace...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to retrieve the stack trace in the compact framework?
Its a property of the exception object in the full framework but missing from
CF.
 
Unfortunately there is no way to retrieve stack trace in CF v1.0
application. However it is possible to see stack trace when you have run
application in debug mode (by pressing F5 in VS).

Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
The exception object has very few properties however without any exception
management a system error dialog is displayed that has much more information.
I think the message is only displayed when compiled for 'debug' and providing
system.en.dll is installed. Where can I get the same information...I want to
create an XML exception log file?
 
I do understand that but can you shed light onto where the system dialog gets
the extra info from...
 
This information exists inside CF runtime, but there are no external hooks
into it.
 
Back
Top