I am working on a project where I need to perform two different operation. I have a finally block in my main controller method.
My question is, can I have more than two finally, for example:
class test
{
X()
{
try
{
//some operations
}
finally
{
// some essential operation
}
}
//another method
Y()
{
try
{
//some operations
}
finally
{
// some another essential operation
}
}
}
so,is it possible?