Reflection VB.Net

Imports System
Imports System.Reflection

Public Class Test
    Public Shared Sub Main()
        Dim asm As [Assembly] = [Assembly].GetCallingAssembly
        Dim aType As Type = GetType(AssemblyTitleAttribute)
        Console.WriteLine(asm.IsDefined(aType, false))
        aType = GetType(AssemblyVersionAttribute)
        Console.WriteLine(asm.IsDefined(aType, false))
    End Sub
End Class