c# 動態載入dll檔案,並實現調用其中的方法(推薦)分析

來源:互聯網
上載者:User
下面小編就為大家帶來一篇c# 動態載入dll檔案,並實現調用其中的方法(推薦)。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

以下是測試代碼:

建立一個classlibrary,包含兩個類class1和class2,這兩個類中分別有一個方法,都是返回一個字串,代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace mydll{  public class Class1  {    public Class1()    {    }    public string sayhello()    {      return "hello,word!";    }  }  public class Class2  {    public Class2()    {    }    public string saybeautiful()    {      return "beautiful,very good!";    }  }}

在編譯完成後會產生一個mydll.dll動態連結程式庫,然後建立一個winform項目(其他也可以,調試用):

private void button1_Click(object sender, EventArgs e)    {      string path = @"D:\123\mydll\mydll\bin\Debug\mydll.dll";      //Byte[] byte1 = System.IO.File.ReadAllBytes(path);//也是可以的      //Assembly assem = Assembly.Load(byte1);      Assembly assem = Assembly.LoadFile(path);      //string t_class = "mydll.Class1";//理論上已經載入了dll檔案,可以通過命名空間加上類名擷取類的類型,這裡應該修改為如下:      //string t_class = "mydll.Class1,mydll";//如果你想要得到的是被本工程內部的類,可以“命名空間.父類……類名”;如果是外部的,需要在後面加上“,連結庫名”;      //再次感謝thy38的協助。      //Type ty = Type.GetType(t_class);//這兒在調試的時候ty=null,一直不理解,望有高人可以解惑      Type[] tys = assem.GetTypes();//只好得到所有的類型名,然後遍曆,通過類型名字來區別了      foreach (Type ty in tys)//huoquleiming      {        if (ty.Name == "Class1")        {          ConstructorInfo magicConstructor = ty.GetConstructor(Type.EmptyTypes);//擷取不帶參數的建構函式          object magicClassObject = magicConstructor.Invoke(new object[] { });//這裡是擷取一個類似於類的執行個體的東東          //object magicClassObject = Activator.CreateInstance(t);//擷取無參數的構造執行個體還可以通過這樣          MethodInfo mi = ty.GetMethod("sayhello");          object aa=mi.Invoke(magicClassObject, null);          MessageBox.Show(aa.ToString());//這兒是執行類class1的sayhello方法        }        if (ty.Name == "Class2")        {          ConstructorInfo magicConstructor = ty.GetConstructor(Type.EmptyTypes);          //擷取不帶參數的建構函式,如果有建構函式且沒有不帶參數的建構函式時,這兒就不能這樣子啦          object magicClassObject = magicConstructor.Invoke(new object[] { });          MethodInfo mi = ty.GetMethod("saybeautiful");          object aa = mi.Invoke(magicClassObject, null);//方法有參數時,需要把null替換為參數的集合          MessageBox.Show(aa.ToString());        }       }      //AppDomain pluginDomain = (pluginInstanceContainer[key] as PluginEntity).PluginDomain;      //if (pluginDomain != null)      //{      //  AppDomain.Unload(pluginDomain);      // }     }

以上就是c# 動態載入dll檔案,並實現調用其中的方法(推薦)分析的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.