When I start introducing a try / catch block, ReSharper forces it to expand with
try {
to
try
{
}
catch(Exception)
{
}
I appreciate ReSharper, trying to do me a favor, but this is one of those cases where I would prefer to do it myself, because I often come back and add a block trylater, or by typing try/ finallywithout a sentence catch.
Where can I disable this behavior in ReSharper?
source
share