I just realized in a C# .Net 4.0 WPF background thread that this doesn\'t work (compiler error):
Dispatcher.Invoke(DispatcherPriority.Normal, delegate() {
I use this one:
Dispatcher.Invoke((Action)(() => YourCodeHere()));