Loads an Assembly given its AssemblyName. : AppDomain « Reflection « C# / C Sharp
- C# / C Sharp
- Reflection
- AppDomain
Loads an Assembly given its AssemblyName.
using System;
using System.IO;
using System.Reflection;
using System.Reflection.Emit;
class Test {
public static void Main() {
AppDomain ad = AppDomain.CreateDomain("ChildDomain");
ad.Load("MyAssembly");
}
}
Related examples in the same category