Search code examples
c#visual-studio-2010visual-studiointellisense

Intellisense doesn't show comments


If I type something in VisualStudio2010 like DataSet1. I get a list of all available Methods and Properties (Intellisense). This works fine. But if I select a method or property in this list I don't get the description of if.

For Example if I have something like:

public class Dummy
{
    /// <summary>
    /// This is a test-method
    /// </summary>
    public string Do { get; set; }
}

And the usage is:

Dummy dummy = new Dummy();
dummy.Do = "dummy";

At the moment when I type dummy.Do I want to have the Property-comment to be displayed in the list of intellisense. Normally this is shown by a tooltip.

How can I turn this behavior on?


Solution

  • Look in Tools > Options > Text Editor > C#. Make sure Parameter information is checked.