Description for functions in Intellisense

  • Thread starter Thread starter Umang Shah
  • Start date Start date
U

Umang Shah

Hi,

I want to add some description to my function. When a user starts using my
function I want to show brief information about that function in
Intellisense. We get same in dot net functions.

Should I add some attribute to it? If yes, then which.

Thanks in advance.

Umang Shah
 
Umang Shah said:
I want to add some description to my function. When a user starts using my
function I want to show brief information about that function in
Intellisense. We get same in dot net functions.

Should I add some attribute to it? If yes, then which.

You need to add XML documentation to your code, and then build the XML
file to "live with" your assembly. See XML documentation in the MSDN
index for more information.
 
Back
Top