2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / tests / ConditionalCompilation.vb
1 Imports System
2 Module ConditionalCompilation
3         Sub Main()
4                 Try
5                         'Using syntatically wrong statements inside a #If block that does not satisfy condition
6                         #If False
7                                 Console.WriteLine("Hello)
8                         #End If
9                 Catch e As Exception
10                         Console.WriteLine(e.Message)
11                 End Try
12         End Sub
13 End Module
14
15
16