<resumo> (Visual Basic)
Specifies the summary of the member.
<summary>description</summary>
Parâmetros
- description
A summary of the object.
Comentários
Use the <summary> tag to describe a type or a type member. Use <remarks> (Visual Basic) to add supplemental information to a type description.
The text for the <summary> tag is the only source of information about the type in IntelliSense, and is also displayed in the Pesquisador de Objetos.
Compile with /doc to process documentation comments to a file.
Exemplo
This example uses the <summary> tag to describe the ResetCounter method and Counter property.
''' <summary>
''' Resets the value the <c>Counter</c> field.
''' </summary>
Public Sub ResetCounter()
counterValue = 0
End Sub
Private counterValue As Integer = 0
''' <summary>
''' Returns the number of times Counter was called.
''' </summary>
''' <value>Number of times Counter was called.</value>
Public ReadOnly Property Counter() As Integer
Get
counterValue += 1
Return counterValue
End Get
End Property
Consulte também
Referência
Recomendado marcas XML para comentários da documentação (Visual Basic)