I am using the NativeDebugWrappers within a C# application to debug a native C++ application to trap exceptions.

This seems to be working well and I am catching the exception (as an ExceptionNativeEvent).

My question is how can I get call stack information so that I can find out exactly where the application has crashed? Do I need to load the symbols? Any information on how to do this would be much appreciated!

Thanks

Ian