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