Asynchronous Fire and Forget With Lambdas
Posted by: youve been HAACKED,
on 09 Jan 2009 |
View original | Bookmarked: 0 time(s)
Ive 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, Mikes code addresses a concern with that approach: Starting with the 1.1 release of the .NET...