Tags: , , | Posted by Kevin Babcock on 7/27/2009 9:17 AM | Comments (0)
  There are certainly powerful and complex multithreading capabilities built into the .NET Framework. But if you’re looking for an easy way to perform asynchronous operations in your applications, delegates are a quick solution. Delegates offer easy-to-use methods that abstract most of th... [More]
Tags: , , | Posted by Kevin Babcock on 5/21/2009 7:33 PM | Comments (1)
C# delegates are fun to use. They let you encapsulate a bit of logic in a nice, neat little object that behaves like a method. All you have to do is declare the signature of the method that the delegate can reference without having to specify the actual method itself. This allows you to define how a... [More]