conditionalif1.vb

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

VB
21
字号
'test conditional compilation expressions'test comparison operators#Const testString_String = "a" < "b"#Const testInt_Int = 1 < 2#Const testBool_Bool = True <> False#Const testInt_Dec = 1 < 1.02#Const testAnd = True And True#Const testAndAlso = True AndAlso True#Const testOr = False Or True#Const testOrElse = False OrElse True#Const testXor = True Xor False#If False Thenclass ConditionalIf1_1end class#ElseIf False Thenclass ConditionalIf1_3end class#ElseClass ConditionalIf1_2End Class#End If

⌨️ 快捷键说明

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