i have a question .. is it ok if i have something like this :
try
{
lock(programLock)
{
//some stuff 1
}
}
catch(Exception ex) { //stuff 2 }
i am curious if "some stuff 1"
causes an exception , does programLock
still remains locked ?