L
Les Caudle
I'm getting this exception in some 3rd party code.
Unable to evaluate expression because the code is optimized or a native frame is
on top of the call stack.
I'd like to be able to just ignore the exception as:
try {
// run 3rd party code
} catch {
}
But I still get an exception in a try for the enclosing method, even though I
can see that fhe code able does enter the catch (so it should ingore the
exception at that point).
What's the correct way to catch and ignore some strange error like this. I've
never gotten an error of this type before, that behaves so strangely.
Unable to evaluate expression because the code is optimized or a native frame is
on top of the call stack.
I'd like to be able to just ignore the exception as:
try {
// run 3rd party code
} catch {
}
But I still get an exception in a try for the enclosing method, even though I
can see that fhe code able does enter the catch (so it should ingore the
exception at that point).
What's the correct way to catch and ignore some strange error like this. I've
never gotten an error of this type before, that behaves so strangely.