I am working in a C# Desktop application
I had made some code such that on execution of that code it falls into the catch block
try
{
//come code
}
catch(exception ex)
{
}
//some code 2
where I have not handled the exception because i want to excecute the code outside the catch block
'some code 2'
but on unhandling the exception it decreases the performance of execution
so please any alter solution for this