i am writing a shared App which is shared with Windows Phone and metro . and i need to call my UI thread from the Worker thread in the Code behind of XAML in Metro App . And yeah i know that i can get it done by using async and await . But i cant use that because this thing will not be supported for other platforms (Android and Phone).
In Windows Phone i know that this can be done using Deployment.Dispatcher.Current.BeginInvoke(). But i cant get how it is done in a Metro App
Also , I am a newbie in C# and App development . So if you can present it in detail, It will be helpful .