Assembly.Load loads an assembly given the long form of its name.
Imports System
Imports System.Reflection
Class Class1
Public Shared Sub Main()
Dim SampleAssembly As [Assembly] = [Assembly].Load("SampleAssembly, Version=1.0.2004.0, Culture=neutral, PublicKeyToken=8744b20f8da049e3")
Dim oType As Type
For Each oType In SampleAssembly.GetTypes()
Console.WriteLine(oType.Name)
Next oType
End Sub
End Class
Related examples in the same category