📄 optionalargu_byreffunce.vb
字号:
Imports SystemModule OP1_0_0 Function F(ByVal telephoneNo As Long, Optional ByVal code As Integer = 80, Optional ByVal code1 As Integer = 91, Optional ByRef name As String = "Sinha") As Boolean If (code <> 80 And code1 <> 91 And name <> "Manish") Then Return False Else name = "Sinha" Return True End If End Function Function foo() As Integer Return 0 End Function Function Main() As Integer Dim telephoneNo As Long = 9886066432 Dim name As String = "Manish" Dim status As Boolean status = F(telephoneNo, , , name) If (status = False Or name <> "Sinha") Then System.Console.WriteLine("#A1, Unexcepted behaviour in string of OP1_0_1") : Return 1 End If End FunctionEnd Module
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -