Development VB.Net Tutorial

Option Strict On
 Imports System
 Class Tester
     Shared Sub Main( )
         Console.WriteLine("Enter Func2...")
         Try
             Console.WriteLine("Entering Try block...")
             Throw New System.Exception( )
             Console.WriteLine("Exitintg Try block...")
         Catch
             Console.WriteLine("Exception caught and handled")
         End Try
        Console.WriteLine("Exit func2...")
     End Sub 'Main
 End Class 'Tester
Enter Func2...
Entering Try block...
Exception caught and handled
Exit func2...