LinqPad is a great tool that allows you to learn and test features of .Net languages (C#, F# and VB.Net.)

  1. Install LinqPad

  2. Create a new Query (Ctrl + N)

    http://i.stack.imgur.com/D0tSi.png

  3. Under language, select “C# statements”

    http://i.stack.imgur.com/kC5Ur.jpg

  4. Type the following code and hit run (F5)

string hw = "Hello World";

hw.Dump(); //or Console.WriteLine(hw);

http://i.stack.imgur.com/LO4kD.jpg

  1. You should see “Hello World” printed out in the results screen.

    http://i.stack.imgur.com/GzsrS.jpg

  2. Now that you have created your first .Net program, go and check out the samples included in LinqPad via the “Samples” browser. There are many great examples that will show you many different features of the .Net languages.

    http://i.stack.imgur.com/yucuf.jpg

Notes:

  1. If you click on “IL”, you can inspect the IL code that your .net code generates. This is a great learning tool.

    http://i.stack.imgur.com/XPumO.jpg

  2. When using LINQ to SQL or Linq to Entities you can inspect the SQL that’s being generated which is another great way to learn about LINQ.