Updated project.
[mono.git] / mcs / btests / OptionalArgu_ByFunctionC1.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.If we don't assign the constant value then it\r
7 '                produce compilation error\r
8 '=============================================================================================\r
9 \r
10 Imports System\r
11 Module OP1_0_0\r
12         Function F(ByVal telephoneNo as Long, Optional ByVal code as Integer = 080,Optional ByVal code1  As Integer = 091, Optional ByRef name As String) As Boolean\r
13                 if (code <> 080 and code1 <> 091 and name="")\r
14                         return false\r
15                 else \r
16                         return true\r
17                 end if\r
18         End Function \r
19    \r
20    Sub Main()\r
21       Dim telephoneNo As Long = 9886066432\r
22         Dim name As String ="Manish"\r
23         Dim status as Boolean\r
24       status =F(telephoneNo,,,name)\r
25         if(status = false)\r
26                 Throw New System.Exception("#A1, Unexcepted behaviour in string of OP1_0_1")\r
27         end if\r
28    End Sub \r
29 \r
30 End Module