Wednesday, January 6, 2010

Hey here's is a simple example of invoking a function in a different thread
Deployment.Current.Dispatcher.BeginInvoke(
{
HelloWorld();
});
private void HelloWorld()
{
//Your code goes here
}