Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

madSHI MadExcept equivalent for .NET (C#)

Tags:

c#

delphi

I am a C# newbie having spent a lot of time with Delphi I am switching to .NET. A great package used for exception stack reporting etc. was madExcept from http://madshi.net/madExceptScreenShots.htm.

Is there something equivalent for .NET (C#). What I am after is something that will provide me with a stack trace when an exception occurs. If so, I am assuming I would have to deploy the debug versions of assemblies as that would have the necessary symbol information? Or could I provide a separate debug MAP file instead?

All pointers greatly appreciated.

like image 346
TheEdge Avatar asked Mar 01 '13 04:03

TheEdge


1 Answers

Unlike Delphi, C# exceptions will give you the stack trace if they are available through the Exception.StackTrace property.

If you want alternatives for other aspects of MadExcept (of which there are a fair few), you should ask them explicitly.

like image 112
Arafangion Avatar answered Sep 23 '22 07:09

Arafangion