And, if i call
this.Dispatcher.BeginInvoke(() =>
{
//Do work
});
or
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
//Do work
});
which thread will work?
and
Does Deployment.Current.Dispatcher the same as this.Dispatcher?
UI thread calculates on CPU
Render thread on GPU
UI
Yes