When I call several methods on the Dispatcher, say UI Thread Manager,
like here
uiDispatcher.BeginInvoke(new Action(insert_), DispatcherPriority.Normal);
uiDispatcher.BeginInvoke(new Action(add_), DispatcherPriority.Normal);
uiDispatcher.BeginInvoke(new Action(insert_), DispatcherPriority.Normal);
will these methods be executed in the same order in which they were called?
source
share