Official LINQ Extension Methods

In .NET 3.5, a large number of extension methods were added to the base code base. I noticed that in MSDN IEnumerable <> etc. There is a section of added extension methods.

Is there a list of all extension methods that have been added for reference?

EDIT Thanks for the answers, but I'm looking for a complete list, not just links to MSDN articles for each independent type, I'm looking for a complete list.

+6
linq extension-methods
source share
4 answers

Many of the extension methods for Linq can be found here . I don't think there is an exhaustive list of all extension methods for .net 3.5

+9
source share

There is a list with descriptions and examples.

+2
source share

The MSDN documentation has been updated and has icons indicating what the extension method is and what is not.

0
source share

You can search them yourself using the .NET Reflector and CodeSearch add-in.

0
source share

All Articles