O
Ojas
When I use a C# asynchronous delegate to put a method's execution on a
different thread, I will eventually get a
[System.Threading.ThreadAbortException] = {Unable to evaluate
expression because the code is optimized or a native frame is on top
of the call stack.}
Does anyone have any insight into why this is only happening when I
run the method on an async delegate thread? If I keep everything
single threaded in C#, it works fine.
But as soon as I introduce the async thread, I start getting these
exceptions from different places in my code.
different thread, I will eventually get a
[System.Threading.ThreadAbortException] = {Unable to evaluate
expression because the code is optimized or a native frame is on top
of the call stack.}
Does anyone have any insight into why this is only happening when I
run the method on an async delegate thread? If I keep everything
single threaded in C#, it works fine.
But as soon as I introduce the async thread, I start getting these
exceptions from different places in my code.