F
Franz
Hi,
I have the following code.
while (foo) {
lock (bar) {
if (abc) {
break;
}
}
}
If I call the break statement, would the bar be unlocked?
Thanks.
Franz
I have the following code.
while (foo) {
lock (bar) {
if (abc) {
break;
}
}
}
If I call the break statement, would the bar be unlocked?
Thanks.
Franz