views:

35

answers:

2

Sorry for being lazy but where's IEnumerable.OrderBy declared. I know it's an extension method but where, in which class is it declared?

PS: Opening reflector...

A: 

You can access it using the namespace System.Linq

mathieu
+1  A: 

A "Go to Definition" click shows that it is declared on System.Linq.Enumerable

David B