del( i); Main([] args) { del myDelegate = x => x * x; j = myDelegate(5); }
System.Linq.Expressions; ConsoleApplication1 { Program { Main([] args) { Expression<del> myET = x => x * x; } } }
TResult Func<TArg0, TResult>(TArg0 arg0)
, > myFunc = x => x == 5;
result = myFunc(4);
[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
oddNumbers = numbers.Count(n => n % 2 == 1);
firstSmallNumbers = numbers.TakeWhile((n, index) => n >= index);