**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / tests / OptionalArgu_ByRefFuncC.vb
blob3e4a8ae2a9f0565d5e0eb9ee798c00d93ad448aa
1 '=============================================================================================
2 'Name:Manish Kumar Sinha
3 'Email Address: manishkumarsinha@sify.com
4 'Test Case Name: Argument passing by Optional Keyword:
5 'O.P-1.0.1: An Optional parameter must specify a constant expression to be used a replacement
6 ' value if no argument is specified.
7 '=============================================================================================
9 Imports System
10 Module OP1_0_1
11 Function F(ByVal telephoneNo as Long, Optional ByRef code as Integer = 080, Optional ByVal code1 As Integer = 091)
12 if (code = 080 and code1 = 091)
13 return false
14 else
15 return true
17 end if
18 End Function
20 Sub Main()
21 Dim telephoneNo As Long = 9886066432
22 Dim code As Integer = 081
23 Dim code1 As Integer = 091
24 Dim status as Boolean
25 status = F(telephoneNo,code,code1)
26 if(status = false)
27 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")
28 end if
29 End Sub
31 End Module