What are these lambda expressions? A lambda expression is nothing but an anonymous method. That is a method that has no access modifier, like public or private, and has no name, and it has no return statement. Why do we use them? Why do we use anonymous methods? For convenience. We can write less code…Continue reading C# Lamda Expressions