How to usedo a project-wide sweep for "Remove redundant catch" using Resharper?
- by David McClelland
I am dealing with a large old codebase that has a lot of these:
try
{
...
}
catch
{
throw;
}
Resharper helpfully marks these and offers the option to "Remove redundant catch", but I don't like having to go through one-by-one, I would like to wipe them out all at once. Is there a way to do that with Resharper, possibly by integrating it in with "Code cleanup"?