Reflection VB.Net

Imports System.Reflection
Class Example
    Shared Sub Main()
        Dim SampleAssembly As [Assembly]
        Dim Integer1 As New Int32()
        Dim Type1 As Type
        Type1 = Integer1.GetType()
        SampleAssembly = [Assembly].GetAssembly(Integer1.GetType())
        Console.WriteLine(("GetCallingAssembly=" + [Assembly].GetCallingAssembly().FullName))
    End Sub 
End Class