FW: Invoke a method from a different thread

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

}

 

Comments