Statement completion (reflection?)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can i make my own class method description appear on statment completion in visual studio
For instance if i type string.compare VS displays the overloaded methods and the "Compares two specified System.String objects." line. I'd like to have similar descriptions for my methods

Thanks
 
Laszlo Kertes said:
How can i make my own class method description appear on statment
completion in visual studio?
For instance if i type string.compare VS displays the overloaded
methods and the "Compares two specified System.String objects." line.
I'd like to have similar descriptions for my methods.

Look up "XML Documentation" in the MSDN index. (Assuming you're using
C#, at least - if you're using VB.NET, you'll have to get an add-on.)
 
Back
Top