I would like to write a stack trace of all threads in my C # application (UI). I can get a stack trace of all managed threads using WinDbg with the following commands.
.loadby sos mscorwks
~ * e! clrstack
Are there any other simple methods to get the stop code of all threads in my C # application? This is because I want to get a column when the application is running on the clientβs machine, and the client is not a technical person.
Please help me.
Thanks!
source share