⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 conditionalattribute1.vb

📁 大名鼎鼎的mono是.NET平台的跨平台(支持linux
💻 VB
字号:
#Const DEBUG = True#Const TEST = FalseImports System.DiagnosticsClass ConditionalAttribute1    Private Shared V As Integer = 1    Shared Function Main() As Integer        a(2) 'This should add        b(3) 'This should not add#Const DEBUG = False        a(5) 'This should not add#Const TEST = True        b(7) 'This should add        Return v - (2 * 7)    End Function    <Conditional("DEBUG")> _    Shared Sub A(ByVal value As Integer)        v *= value    End Sub    <Conditional("TEST")> _    Shared Sub B(ByVal value As Integer)        v *= value    End SubEnd Class

⌨️ 快捷键说明

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