MiniDump for C#!?

  • Thread starter Thread starter Jochen Kalmbach
  • Start date Start date
J

Jochen Kalmbach

Hello,

I just have a small question about crash-dumps for C#-apps:

In "normal" unmanaged apps I can use "MiniDumpWriteDump" to write a mini-
dump if an exception occurs (via. "SetUnhandledExceptionFilter")

With this file it is easy possible to find the source of the crash.


How should this be solved in C# (or CLR) ?
Is there an comparable mechanism to write a "minidump" !?

Any comments are welcome...


--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp
 
Jochen,

I don't think that there is anything like this out-of-the-box for the
framework. However, if you are looking for the source of the crash, that is
rather easy when an exception occurs. A full stack trace is delivered along
with the exception, so that should be a good place to start.

Hope this helps.
 
Back
Top