Load an assembly into the current application domain : Assembly « Reflection « VB.Net Tutorial






Class MyStream
    Public Shared Sub Main()
        Dim ad As AppDomain = AppDomain.CreateDomain("ChildDomain")
        ad.Load("MyAssembly")
    End Sub
End Class








19.8.Assembly
19.8.1.Loads an assembly named "example.exe" or "example.dll" into the current application domain
19.8.2.Fully qualified assembly name containing the specified class
19.8.3.IsDefined taking an Assembly as a parameter.
19.8.4.Get a type named Example from the assembly
19.8.5.Load an assembly into the current application domain