**** Merged from MCS ****
[mono-project.git] / mcs / btests / AttributesC.vb
blob128ca3320ab52b91fb78c27c61fd7d7d75c9243a
1 Imports System
3 <AttributeUsage(AttributeTargets.All, AllowMultiple:=True, Inherited:=True)> _
4 Public Class AuthorAttribute
5 Inherits Attribute
6 Public Name
7 Public Sub New(ByVal Name As String)
8 Me.Name=Name
9 End Sub
11 End Class
14 <Author("Robin Cook"),Author("Authur Haily")> _
15 Public Interface C1
17 End Interface
19 Public Interface C2
20 Inherits C1
22 End Interface
24 Module Test
25 Sub Main()
27 End Sub
28 End Module