A
Anders Eriksson
I have found this code on the internet. It works, but I don't understand
what it does.
Action action = () => lbMsg.Items.Add(msg);
Dispatcher.Invoke(action);
I'm using this for updating a listbox from an another thread.
// Anders
what it does.
Action action = () => lbMsg.Items.Add(msg);
Dispatcher.Invoke(action);
I'm using this for updating a listbox from an another thread.
// Anders