Call background thread
I think the most Gentleman's approach to call background method is Threadpool.
public void TheGentlemansApproach()
{
// straight onto the threadpool - what could be better?
ThreadPool.QueueUserWorkItem(_ => BackgroundMethod("The Gentleman's Approach"));
}
Comments
Comments are closed