Simple example of using Lambdas. Most programmers will want to work with Query Expressions. However, Lambdas can be useful in some circumstances, and this sample provides a quick introduction to the subject.
There are 10 samples in this project. By default you will run the first sample. If you edit the Main() method in Program.cs you can modify the code to run one of the other 9 samples. For instance, by default, main calls:
Samples.Sample1();
Modify this code to call Sample2():
Samples.Sample2();
The samples are named Sample1(), Sample2(), etc, up to Sample10().