I am in a worker thread (I mean, thread pool task)…
I windows phone I would do:
Deployment.Current.Dispatcher.BeginInvoke(
delegate ()
{
// Do something on ui thread...
}
);
How can I do this in a Windows Store app?
I searched through msdn but came up empty…
Thanks
Here is the answer: