Mega Code Archive
Categories
/
C# Tutorial
/
LINQ
A lambda expression has the following BNF form
using System; class Test { static void Main() { Func
square = x => x * x; Console.WriteLine(square(3)); // 9 } }