I'm completely stuck. I'm testing MetaTrader API and getting next error when tries to run a method in the Immediate Window of VS 2010:
A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
A first chance exception of type 'System.Threading.ThreadAbortException' occurred in System.Runtime.Remoting.dll
Evaluation requires a thread to run temporarily. Use the Watch window to perform the evaluation.
What does it mean? Can it happens because of runtime versions difference (api 2.0, app 4.0)?
I believe the method you are calling through the Immediate Window ends up calling Debugger.NotifyOfCrossThreadDependency. This method was only introduced in .NET 4.0, so it makes sense that the problem won't reproduce itself when using an older version of the runtime. This blog post explains NotifyOfCrossThreadDependency
in detail, but the gist of it is that it causes the Watch window to show a Refresh button which must be pressed before the evaluation occurs. If it is evaluated through the Immediate Window, though, you get the "Evaluation requires a thread to run temporarily. Use the Watch window to perform the evaluation" error.
Here's an example property that reproduces this error:
public int CauseError
{
get
{
Debugger.NotifyOfCrossThreadDependency();
return 5;
}
}