How to print stack trace of StackOverflowException

前端 未结 1 779
既然无缘
既然无缘 2020-12-10 15:03

I am developing a .Net 2.0 application in which a StackOverflowException occurs. Is there a way to print/log the stack trace before/during the application aborts? This is a

相关标签:
1条回答
  • 2020-12-10 15:34

    Use ADPlus (from Windows Debugging Tools) to force a dump on crash.

    E.g.

    adplus -hang -pn <process name> -o <dump file>
    
    0 讨论(0)
提交回复
热议问题