Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know what the keyboard shortcut to scroll a method's overloads that appears in the tooltip is? I presently have to resort to using the mouse to click the ^ and v labels in the tooltip, which isn't particularly effective.

Thanks!

alt text

share|improve this question

6 Answers

up vote 9 down vote accepted

The arrow keys work for me...

share|improve this answer
right that works :P now i feel stupid :P thanks ^^ – littleduckie Jun 6 '09 at 4:54
We've all been there. – Michael Petrotta Jun 6 '09 at 5:03
Gahh.. I was trying Ctrl+Up, Shift+Up, Alt+Up, PageUp.... never occured to me to just press Up. Thanks. – Mark Nov 4 '10 at 2:48

What's the command to bring up the tooltip? I know the shortcut in Eclipse (Ctrl + Space) but that's Eclipse...

In VS the tooltip shows when you type the first bracket but if I would like to see the different method overloads for a method that's been implemented already, how would I do that?

Press Ctrl + Shift + Space to see the list of overloads and arguments.

See the Visual C# 2008 Keybinding Reference Poster for more keyboard shortcuts.

share|improve this answer
2  
Note: in VS 2010, you have to have your cursor on the method arguments (not method name) when pressing ctrl+shift+space. – KyleM Jul 7 '11 at 17:14
@KyleM - that was it! I couldn't figure this out for the life of me, thanks. – Rocketmonkeys Sep 6 '11 at 22:36

@mefepe A little late but maybe somebody else needs it too...

  1. place the cursor after the first bracket
  2. Press Ctrl + Shift + Space
share|improve this answer
perfect! thanks. – Chris Feb 8 '12 at 8:55

Sometimes I have to hit escape to get rid of the intellisence popup before using the arrow keys to scroll through the overload list.

share|improve this answer

Arrow keys are the short cut keys i suppose as they work for me.

share|improve this answer

What's the command to bring up the tooltip? I know the shortcut in Eclipse (ctrl+space) but that's Eclipse...

In VS the tooltip shows when you type the first bracket but if I would like to see the different method overloads for a method that's been implemented aldready, how would I do that?

There's got to be an easier way than this:

  • place the cursor just after the first bracket
  • erase it
  • re-type it (tada!)
  • navigate the methods using up and down arrows
  • when you're done, press ctrl+z to undo changes.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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