views:

59

answers:

2

If I go to visual studio and type MyEnumerable., I'll see a list of all the methods that can executed from that object. This list shows extension methods as well, which is great, but is there a way (a keboard shortcut?) to narrow this list down to not include extension methods?

+3  A: 

I don't know if you can but extension methods have a down arrow between the icon and the name, so you can at least tell them apart from the instance methods.

ChrisF
+3  A: 

Other than removing using System.Linq from the top of the file, no.

However, you can look at the type in Object Browser, which will not show extension methods.

SLaks