(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / OptionalArgu_ByValFuncC.vb
blobf34933c8b4b8b43c5b246eec6ce8b53a1e0844c2
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.0: 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_0
11 Function F(ByVal telephoneNo as Long, Optional ByVal code as Integer = 080,Optional ByVal code1 As Integer = 091) as Boolean
12 if (code <> 080 and code1 <> 091)
13 return false
14 else
15 return true
16 end if
17 End Function
19 Sub Main()
20 Dim telephoneNo As Long = 9886066432
21 Dim status as Boolean
22 status = F(telephoneNo)
23 if(status = false)
24 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")
25 end if
26 End Sub
28 End Module