Time for action – getting the LINQPad

Follow the given steps:

  1. Download LINQPad from www.linqpad.net/.
  2. Download the executable for .NET Framework 4.0 from the website:
    Time for action – getting the LINQPad
  3. Start LINQPad.

    LINQPad is capable of running C# Expressions, Statements, and complete C# Programs.

  4. Type the following query in the query area in the tab space to the right, as shown in the following screenshot. Select C# Statement(s) from the drop-down, as shown in the following screenshot. The query comprises complete C# Statements. A C# Expression is a partial C# Statement:
    "I You Love".Split(' ').OrderBy(c => c).ToList().ForEach(c=>Console.Write(c+" ")); Console.Write("Linq");
    
  5. Press ...

Get .NET 4.0 Generics now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.