2005-01-07 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / mbas / Test / tests / OptionalArgu_ByValFuncE.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.When you omit one or more optional arguments in\r
7 '                the argument list, you use successive commas to mark their positions. \r
8 '               The following example call supplies the first and fourth arguments but not the\r
9 '                second or third:\r
10 '=============================================================================================\r
11 \r
12 Imports System\r
13 Module OP1_0_0\r
14         Function F(ByVal telephoneNo as Long, Optional ByVal code as Integer = 080,Optional ByVal code1  As Integer = 091, Optional ByRef name As String="Sinha") As Boolean\r
15                 if (code <> 080 and code1 <> 091 and name="Sinha")\r
16                         return false\r
17                 else \r
18                         return true\r
19                 end if\r
20         End Function \r
21    \r
22    Sub Main()\r
23       Dim telephoneNo As Long = 9886066432\r
24         Dim name As String ="Manish"\r
25         Dim status as Boolean\r
26       status = F(telephoneNo,,,name)\r
27         if(status = false)\r
28                 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")\r
29         end if\r
30    End Sub \r
31 \r
32 End Module