Understanding Generic Anonymous Methods and Lambda Expressions in C# View Article Information Posted Date: 1. May 2014 Author: Anil Sharma Categories: .Net Framework, LINQ, C Sharp Keywords: Generic Anonymous Methods, Anonymous Methods, Lambda Expressions, Lambda Expressions in C#, Lambda Expressions Tutorials Anonymous methods behave like regular methods except that they are unnamed. Anonymous Methods were introduced as an alternative to defining delegates that did very simple tasks, where full-blown methods amounted to more than just extra typing. Anonymous methods also evolved further into Lambda Expressions, which are even shorter methods. [Continue Reading]