B
buu
If I have a code like:
TRY
SYNCLOCK Object1
//some code
END SYNCLOCK
CATCH
END TRY
If an error occurs in a part "some code", will Object1 be released from
synclock or not?
shoul the code look like this?:
SYNCLOCK Object1
TRY
//some code
CATCH
END TRY
END SYNCLOCK
TRY
SYNCLOCK Object1
//some code
END SYNCLOCK
CATCH
END TRY
If an error occurs in a part "some code", will Object1 be released from
synclock or not?
shoul the code look like this?:
SYNCLOCK Object1
TRY
//some code
CATCH
END TRY
END SYNCLOCK