MethodInvoker in WPF?
You can use just like this;
Dispatcher.BeginInvoke(new Action(delegate
{
// Do your work
}));
MethodInvoker is used in WPF also. And you can use it in Dispatcher.Invoke or Control.Invoke methods. Also you can use Action delegate which has many overridings. They both will be efficient.