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?
views:
59answers:
2
+4
Q:
Is there a way to view only the instance methods of an object in Visual Studio's Intellisense?
+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
2010-01-20 16:12:53
+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
2010-01-20 16:13:18