events2.vb

来自「大名鼎鼎的mono是.NET平台的跨平台(支持linux」· VB 代码 · 共 18 行

VB
18
字号
imports systemClass Events2_a_event    Dim M As String    Custom Event M2 As EventHandler        AddHandler(ByVal value As EventHandler)        End AddHandler        RemoveHandler(ByVal value As EventHandler)        End RemoveHandler        RaiseEvent(ByVal sender As Object, ByVal e As System.EventArgs)        End RaiseEvent    End EventEnd ClassClass Events2_b_event    Event b(ByVal bb As String)End ClassClass Events2_c_event    Event c(ByRef cc As String)End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?