http://stackoverflow.com/questions/4317479/func-vs-action-vs-predicate The difference between Func and Action is simply whether you want the delegate to return a value (use Func) or not (use Action). Func is probably most commonly used in LINQ - for…