Project - C #.
So, I have a bunch of multithreaded code that is designed to work as a library. This is in a separate project from the user interface.
My library has a central object that needs to be created before everything is created that could trigger events.
Is it possible for this main object to be conveyed in some objects so that my events can figure out when they will need to be called in order to return to the main stream of the user interface?
I would really like the user interface to make a bunch of calls, as its event handlers will almost always be called from some random background thread.
Joel barsotti
source share