Imports System 'Using a single-use attribute multiple times _ Public Class AuthorAttribute Inherits Attribute Public Name Public Sub New(ByVal Name As String) Me.Name=Name End Sub Public ReadOnly Property NameP() As String Get Return Name End Get End Property End Class _ Public Class C1 Public Sub S1() End Sub End Class Module Test Sub Main() End Sub End Module