MiniDump for C#!?

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
 
N

Nicholas Paldino [.NET/C# MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

MiniDump for C# !? 2
Is there any way to read PDF file? 5
minidump analysis 3
BUG: PrinterSettings.ToString() 3
Strong names 1
Need minidump analyzed 4
bsod problems 6
BSOD -- need help understanding minidump 9

Top