attributesa.vb
来自「大名鼎鼎的mono是.NET平台的跨平台(支持linux」· VB 代码 · 共 31 行
VB
31 行
Imports System'Ommiting AttributeUsage attributePublic Class AuthorAttribute Inherits Attribute Public Name As Object Public Sub New(ByVal Name As String) Me.Name = Name End Sub Public ReadOnly Property NameP() As String Get Return CStr(Name) End Get End PropertyEnd Class<Author("Robin Cook")> _Public Class C1 <Author("John")> _ Public Function S1() As Object End FunctionEnd ClassModule Test Function Main() As Integer End FunctionEnd Module
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?