Question

I know that I can use WinDbg+PageHeap+ApplicationVerifier - Microsoft tools.

I read there are many tools available for C++ and wonder if there is something similar exists for C#?

Was it helpful?

Solution

These are the kind of tools you use to troubleshoot mis-behaving native code. Access violations, heap corruption, resource leaks, that sort of thing. That just doesn't happen in pure managed code by virtue of the concept of safe code and the garbage collector. If you have a dependency on native code in your managed project that misbehaves that way (Fatal Execution Engine Error for example) then you still use the same tools. Diagnosing it is never easy.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top