2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / tests / OptionalArgu_ByRefFuncC.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 ByRef code as Integer = 080, Optional ByVal code1  As Integer = 091)\r
12                 if (code = 080 and code1 = 091)\r
13                         return false\r
14                 else \r
15                         return true\r
16 \r
17                 end if\r
18         End Function \r
19    \r
20    Sub Main()\r
21       Dim telephoneNo As Long = 9886066432\r
22          Dim code As Integer = 081\r
23         Dim code1 As Integer = 091\r
24         Dim status as Boolean\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