Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
XML RSS Feed
 
 
 
MSDN Visual Basic Community
 
 
 
 
 
 
TitleUse the Description attribute in VB .NET
DescriptionThis example shows how to use the Description attribute in VB .NET.
KeywordsDescription, DescriptionAttribute, attribute, VB.NET, property
CategoriesVB.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
 
 
Copyright © 1997-2003 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated