Thank you! This is a way better way of doing it!
On Sun, Apr 10, 2011 at 3:40 PM, Keith Rome wrote:
> Not sure if you are aware, but calling a delegate like that via BeginInvoke()
> is really just the same thing as using ThreadPool.QueueUserWorkItem(). You
> might save yourself a lot of hassle
Not sure if you are aware, but calling a delegate like that via BeginInvoke()
is really just the same thing as using ThreadPool.QueueUserWorkItem(). You
might save yourself a lot of hassle by omitting the Class1 and event handler
funny business, and just pass your callback directly to QUWI:
imp