try
{
//some code that might throw exception
}
finally
{
}
I came across above code in a project, and I can't understand what is the use of such a try-catch-finally block.
Note: no catch
block, and empty finally
block.
try
{
//some code that might throw exception
}
finally
{
}
I came across above code in a project, and I can't understand what is the use of such a try-catch-finally block.
Note: no catch
block, and empty finally
block.