When dealing with something like a List you can write the following:
List
list.ForEach(x => Console.WriteLine(x));
No tangible benefits other than making it more pleasant to people who like method groups, and annoy people who dislike them [should that please you.] Also, it makes your code incompatible with earlier compilers.
-Oisin