MemoizR
MemoizR copied to clipboard
Add WPF lib that works on thread pool except for the reaction
In WPF only the state relevant for the ui should be handeled on the UI thread. Every thing else should be done on workers.
Application.Current.Dispatcher.Invoke(new Action(() => { /* Your code here */ }));