|
|
Title | Use the Description attribute in VB .NET |
Description | This example shows how to use the Description attribute in VB .NET. |
Keywords | Description, DescriptionAttribute, attribute, VB.NET, property |
Categories | VB.NET |
|
|
The Properties window displays a property's Description attribute at the bottom.
|
|
Public Class Star
...
<Description("The number of points the star should " & _
"have.")> _
Public Property Points() As Integer
...
End Property
...
End Class
|
|
|
|
|
|