المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Exception in finally black ???



C# Programming
09-10-2009, 04:33 PM
Hi,

What will happen if exception is happening in finally black. for example

finally
{
//i am closing connection object here .
con.close() ;

//but connection is not opened means this will throw the exception . What will happen for this Exception


}


Thanks in advance