Comments for function to see in design time

  • Thread starter Thread starter Marcos Stabel
  • Start date Start date
M

Marcos Stabel

I there any way to insert a comment in a function that we can see in design
time, at the same tooltip that apear the parameters of the function.

tia

Marcos
 
Marcos said:
I there any way to insert a comment in a function that we can see in design
time, at the same tooltip that apear the parameters of the function.
<snip>

If I understand you correctly, you're talking about XML comment tags.

Position your cursor above the member/method/class you want to comment
and type

'''

(yes, triple ticks)
automagically, an XML skeleton will be inserted for you, with
appropriate tags for the item you're commenting about. Something like:

''' <summary>
'''
''' </summary>
''' <remarks></remarks>
Public Class Form1

End Class

The <summary> and <remarks> tags above were automagically created. You
just need to fill their contents (remember to use &lt; and &gt; if you
want to include angle brackets inside your comments).

HTH.

Regards,

Branco
 
Back
Top