我如何关注.Net Native神秘的堆栈跟踪?

Lai*_*ith 10 c# exception stack-trace .net-native

由于UWP需要.Net Native(非常受欢迎),我现在正在获得神秘的堆栈跟踪.这是使用我的应用的人报告的异常:

System.InvalidCastException: InvalidCast_Com 
at SharedLibrary!<BaseAddress>+0x429e9d 
at SharedLibrary!<BaseAddress>+0x47d878 
at SharedLibrary!<BaseAddress>+0x48455a 
at SharedLibrary!<BaseAddress>+0x499043 
at SharedLibrary!<BaseAddress>+0x498fb7 
at SharedLibrary!<BaseAddress>+0x5ea468 
at SharedLibrary!<BaseAddress>+0x5ea418 
// this goes on...
Run Code Online (Sandbox Code Playgroud)

我知道在某处有一个无效的演员...但我需要知道SharedLibrary!<BaseAddress>+0x429e9d指向的是什么.

有没有办法找到这些链接指向的位置?

And*_* Au 1

GitHub 上有一个工具可以将 .Net Native 堆栈跟踪解密为人类可读的格式。

https://github.com/dotnet/corefx-tools/tree/master/src/StackParser