Imports System _ Public Class AuthorAttribute Inherits Attribute Public Name As String Public No As Integer Public Sub New(ByVal Name As String) Me.Name=Name End Sub Public Sub New(ByVal Name As Integer) Me.Name=Name.toString() End Sub End Class _ Public Class PublicationAttribute Inherits Attribute Public Name Public Sub New(ByVal Name As String) Me.Name=Name End Sub End Class _ Public Class C1 _ Public Sub S1() End Sub End Class Module Test Sub Main() End Sub End Module