vote up 4 vote down star

I saw a blog post the other day that had a screen shot of intellisense's member list that looked like this:

DateTime. -> [Compare(DateTime, DateTime) int]
             [DaysInMonth(int, int)       int]
             ...

Instead of mine which looks like:

DateTime. -> [Compare    ]
             [DaysInMonth]
             ...

How do I setup my vs2008 IDE so that my member list looks like the first example?

flag

75% accept rate

1 Answer

vote up 5 vote down check

Could it be that they were using ReSharper? ReSharper's Intellisense is definitely nicer than Visual Studio's - apart from anything else, when it's showing overloads, it shows several at a time - I can never stand the way Visual Studio does that...

I've just checked, and I don't believe ReSharper does this by default but there's an option under ReSharper / Options / Environment / Intellisense / Completion Appearance: "Show member signatures". Turning that on gives the parameter types as desired.

I don't think vanilla Visual Studio has an equivalent option.

link|flag
You beat me to it. This is an option in ReSharper. – John Downey May 11 at 18:56
Awe man! I got excited that this was a vanilla option - just hard to find. I'm using code rush here :( - maybe they've got something similar. Thanks. – TheDeeno May 11 at 19:02
I really didn't like it that much .... it killed my IDE ... So i uninstalled it. But it worth trying it out ;) – Issa Qandil May 11 at 19:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.