* MonthCalendar.cs:
[mono-project.git] / mcs / btests / Import1.vb
bloba6440b2fb21f2e196cc05220103302a15270830e
1 Imports System
2 Imports Dll1
4 Module Test
5 Sub Main
6 Dim i As Integer
7 Dll1.OutInt(i)
8 If i <> 123 Then
9 Throw New Exception("#A1: Wrong value returned: " & i.ToString())
10 End If
11 End Sub
12 End Module