Func<T> Lambda Example
using System;
public class LambdaExpression
{
public static void Main()
{
Func<string, string> convert = s => s.ToUpper();
string name = "i was once low like you, but now that's not the case...";
Console.WriteLine(convert(name));
}
}INFO