2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / tests / OptionalArgu_ByValFuncC.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.0: 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_0\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 status as Boolean\r
22       status = F(telephoneNo)\r
23         if(status = false)\r
24                 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")\r
25         end if\r
26    End Sub \r
27 \r
28 End Module