I am only somewhat familiar with multi-threading in that I\'ve read about it but have never used it in practice.
I have a project that uses a third party library tha
Look into the AsyncOperation class. You create an instance of AsyncOperation
on the thread you want to call the handler on using the AsyncOperationManager.CreateOperation method. The argument I use for Create
is usually null, but you can set it to anything. To call a method on that thread, use the AsyncOperation.Post method.