Updated project.
[mono.git] / mcs / btests / OptionalArgument1.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 we omit one or more optional arguments in\r
7 '                the argument list, you use successive commas to mark their positions. \r
8 '               If we don't mark commas then it produce run time error\r
9 '=============================================================================================\r
10 \r
11 Imports System\r
12 Module OP1_0_0\r
13         Sub F(ByVal telephoneNo as Long, Optional ByVal code as Integer = 080,Optional ByVal code1  As Integer = 091, Optional ByRef name As String="Sinha")\r
14                 if (code <> 080 and code1 <> 091 and name="Sinha")\r
15                         Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_0")\r
16                 end if\r
17         End Sub \r
18    \r
19    Sub Main()\r
20       Dim telephoneNo As Long = 9886066432\r
21         Dim name As String ="Manish"\r
22       F(telephoneNo,name)\r
23    End Sub \r
24 \r
25 End Module