Hi,
How to replace all my code inside Catch block.
Ex) From
catch(Exceptionex)
{
//Old Code
}
To
{
//New Code
}
It's a tedious task to manually replace all my catch blocks with new code. So i'm looking for a Regex to find and replace all my code inside catch block in my entire solution. Just replacing all lines inside catch block and replacing with new one. Can some
one help me out ?
Thanks in Advance.