Reflection VB.Net

Imports System
Imports System.Reflection

Class Example
    Shared Sub Main()
        Console.WriteLine("The version of mscorlib.dll is: {0} ",GetType(String).Assembly.GetName().Version)
    End Sub
End Class