If you speak in the context of LINQ, which is the lamdba operator .
Such as the...
var selectedValues = myList.Where(v=>v.Name="Matt");
You can use them in your own methods instead of degats. Possible uses would include something like this ...
void DoWork<T>(T input, Func<T, bool> doAction, Action<T> action) { if (doAction(input)) action(input); }
... using the above method will look like ...
DoWork(5, i=>i>1, v=>Console.WriteLine(v));
... because 5 is greater than 1, this displays 5 on the console.
Matthew whited
source share