A Queued BackgroundWorker Using Generic Delegates

Monday, May 19th, 2008 Posted in Programming | 18 Comments »

EDIT: Oops, sorry for the typo in the title. I meant "generic delegates", not "anonymous delegates". :) Last week I wrote a post about using a generic wrapper around ... Read more..

A Type-safe BackgroundWorker Wrapper

Monday, May 12th, 2008 Posted in Programming | 17 Comments »

Not too long ago I created a type-safe implementation of the ThreadPool.QueueUserWorkItem method that has proved quite useful to spawn off a long-running process to a new thread. This ... Read more..