0

如何在我的项目目录中引用托管程序集以构建我的应用程序,然后让 CLR 在运行时加载该程序集的不同副本(在指定路径)?

4

1 回答 1

0

您可以显式加载程序集,但在自动加载之前执行它,例如

static class Program {
  static void Main() {
    ...
    // Loading assembly before it's implicitly loaded    
    String path = @"C:\Program Files\MyDlls\MyAssembly.dll"
    Assembly.LoadForm(path); 
    ...
    // First use of the loaded assembly 
    MyType v = new MyType(); 
于 2013-05-23T07:24:08.970 回答