A number of devs don't quite understand the order of operations in structured exception handling. This leads to some interesting bugs... Take this snippet of pseudocode, for example: try { EnterCriticalSection(); try { DoSomething() RaiseException();
Read More...