Quick actions

cmd+k|ctrl+k

Navigation

Languages

Func<T> Lambda Example

Snippet info

Language

Csharp

Visibility

public

Author

islanq

Created

2016-04-25T06:29:10Z

Updated

2016-04-25T06:30:13Z

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