Hi !
I wrote an application in C++/CLR. It uses a native lib/dll. On rare occasions, it crashes insider this native dll. I then get a stacktrace, but only up to the managed part, the inside native part is left out. Is there a way to let it display the whole stacktrace?
I made the following test: I added a line of code inside the native dll that makes it always crash. When I run it by doubleclicking the exe, I get a stacktrace of the managed part like before. If I run it from VS2008 with a debugger attached (just pressing F5), and it crashes, I see the whole stacktrace, the managed and the unmanaged parts.
Since the actuall bug happens so rarely, I'ld like to add something to my application that somehow displays the whole stacktrace without having the users to install und run it through VS. Is there a way to do that?
Thx Marc