Java requires that you catch all possible exceptions or declare them as thrown in the method signature. This isn’t the case with C# but I still feel that it is a good practice to catch all exceptions. Does anybody know of a tool which can process a C# project and point out places where an exception is thrown but not caught?
Java requires that you catch all possible exceptions or declare them as thrown in
Share
Check out the ExceptionFinder plug-in by Jason Bock for the .NET Reflector. It does just what you are looking for. Here’s a screeny:
Check it out on CodePlex