17
02
2010
Good to-the-point articles about Delegates, Func Types and Lambda expresssions
Posted by: jason in Uncategorized- C# Delegates, Anonymous Methods, and Lambda Expressions – O My! [Code Project]: Explains delegates, func types, anaonymous methods and demonstrates how using them all together dramatically reduces lines of code from older C# frameworks
- C# Func Type [dotnetperls.com]: Demonstration of a small program using Func generic type and lambdas
- Lambda Expressions (C# Programming Guide) [MSDN]: Discussion of what a lambda expression is and some examples of how it is used. Bingo! Explains that the lambda operator => is read as “goes to”.
- Extension delegates [csharpindepth]: Demonstration of how to specify an extension method as a method group using extension syntax.
- Intro to LINQ: Examples and discussion of LINQ in terms of Type Inference, Lamda Expressions, Extension Methods and Anonymous Types
