Author: Ayad Boudiab
Title: Visual Studio C# - LINQ - Parte VI
Duration: 15:39 min
Description:
This is a continuation of the LINQ discussion. In this video, I will be discussing
lambda expressions. lambda expressions are brief inline functions, or concise delegates.
Specifically, I will be covering Action and Predicate. An action is a method that takes
no argument. Predicate evaluates an expression and returns a boolean. We will use an
employee class to show how Action work, and we will use a list of ints to show the use
of predicates.