enumd.vb

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

VB
26
字号
Imports SystemModule M    Enum E        A = B        B = C        C = 100    End Enum    Function Main() As Integer        Dim e1 As E        If E.A <> 100 Then            Throw New Exception("#D1: Unexpected value for E.A")        End If        If E.B <> 100 Then            Throw New Exception("#D2: Unexpected value for E.B")        End If        If E.C <> 100 Then            Throw New Exception("#D3: Unexpected value for E.C")        End If    End FunctionEnd Module

⌨️ 快捷键说明

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