0
kicks
The Power of Anonymous Methods in C#
Anonymous methods are a new feature in C# 2.0 that allow you to hook an action directly to an event as opposed to having a separate event handler. They can also be used anytime a method accepts a delegate as a parameter. This article provides a glimpse into how anonymous methods can be used in C#.