show/hide this revision's text 3 added 355 characters in body

With the exception that you would modify the list in place rather than returning a new one, this is just a .ForEach() call.

To really understand how this works, think more in terms of IEnumerables than Lists. Think about why the two expressions below have the same result and why the latter is generally preferable:

MyEnumerable.Count() > 2
MyEnumerable.Skip(2).Any()

To help accomplish this, re-implement some standard IEnumerable extensions using C#'s yield keyword. Once you really get why the 2nd performs better you should be in good shape.

As for the different basic delegate types, you just need to learn them. Think of Func as your basic common delegate, where you specify the argument type and return type for the generic type parameters. Then think of Action as a special case of Func where the return type is void and Predicate as a special case where the return type is bool.

show/hide this revision's text 2 added 4 characters in body

With the exception that you would modify the list in place rather than returning a new one, this is just a .ForEach() call.

To really understand how this works, think more in terms of IEnumerables than Listsand spend some time understanding C#'s yield keyword, until you understand . Think about why the two expressions below have the same result and why the latter is generally preferable:

MyEnumerable.Count() > 2
MyEnumerable.Skip(2).Any()

To help accomplish this, re-implement some standard IEnumerable extensions using C#'s yield keyword. Once you really get that why the 2nd performs better you should be in good shape.

show/hide this revision's text 1

With the exception that you would modify the list in place rather than returning a new one, this is just a .ForEach() call.

To really understand how this works, think more in terms of IEnumerables than Lists and spend some time understanding C#'s yield keyword, until you understand why the two expressions below have the same result and why the latter is generally preferable:

MyEnumerable.Count() > 2
MyEnumerable.Skip(2).Any()

Once you really get that you should be in good shape.