Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

VS2010:

In VB I can place the cursor inside an existing method's parameter brackets and type a 'space', which will bring up the tooltip with description of the parameter I'm at. This is not the case in C#. I have to delete the whole brackets including the parameters, and retype the left bracket, for this tooltip to show. Is there some shortcut or setting to change this behavior? I tried hitting ctrl, shift, alt, but it has no effect.

share|improve this question

2 Answers

up vote 13 down vote accepted

Ctrl+Shift+Space will do what you want.

You might want to check out a poster of key bindings.

share|improve this answer
AFAIK, this doesn't bring up parameter info where the caret is within the parentheses for the parameters. – spender Jan 31 '11 at 10:21
He could also download from the link I gave, lists all the default key bindings. – Lloyd Jan 31 '11 at 10:23
Looking at the chart, CTRL+Shift+Space looks like the one. – spender Jan 31 '11 at 10:23
Cool, I even printed it off myself :P – Lloyd Jan 31 '11 at 10:24
2  
Thanks! That works. So then I assume it can not be changed to "automatic" behavior? Btw, here is similar link for VS2010: microsoft.com/downloads/en/… – bretddog Jan 31 '11 at 10:33

Actually, didnt understand you mean exactly. But I use this coding for method parameters tooltip. Please tell me if I understood wrong, then I can delete my answer.

        /// <summary>
        /// Do work function
        /// </summary>
        /// <param name="id">This is user's Id.</param>
        /// <param name="name">This is user's Name.</param>
        /// <param name="surname">This is user's surname. </param>
        private void DoWork(int id, string name, string surname)
        { 
        // do stuff
        }
share|improve this answer
I believe he already has the XML documentation. The problem is making the tooltip appear for an existing method call. – Cody Gray Jan 31 '11 at 10:27

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.