I wanted to know if there is a possibility to dump all stack variable when an exception occurs in .NET 4 so I can analyze it later (in production serveR)
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are some resources around.
See Writing Minidumps in C#. Minidumps later can be analyzed either in WinDbg or in VS 2010.
You may also interested in Is it impossible to show forms when handling a AppDomain.CurrentDomain.UnhandledException? and What is the best way to collect crash data?