ThreadPool

There are 1 entries for the tag ThreadPool

Asynchronous Fire and Forget With Lambdas

I’ve been having trouble getting to sleep lately, so I thought last night that I would put that to use and hack on Subtext a bit. While doing so, I ran into an old Asynchronous Fire and Forget helper method written way back by Mike Woodring which allows you to easily call a delegate asynchronously. On the face of it, it seems like you could simply call BeginInvoke on the delegate and be done with it, Mike’s code addresses a concern with that approach: Starting with the 1.1 release of the .NET Framework, the SDK...