tags:

views:

32

answers:

1

Is it possible to add an a tooltip for each item that shows up in the autocomplete using c# ?

Give complete answer in only c# please

+2  A: 

Do you mean IntelliSense while you're coding? If so, you need to provide XML doucmentation. For example:

/// <summary>
/// Does something to the object.
/// </summary>
public void Foo()
{
    // Code here
}

If you type /// above your method declaration, Visual Studio will provide a template.

Jon Skeet