裝載外部DLL 全攻略 [轉:]

來源:互聯網
上載者:User

using System;
using System.Windows.Forms;

namespace ArLi.CommonPrj {
 public class ShowAboutBox {
  public static void ShowOn(Form fm) {
   MessageBox.Show("OK");
  }
 }
}

編譯後檔案名稱叫 AboutBox.dll

主程式裡調用方法如下:

//定義檔案名稱
FileInfo aBoxFile = new FileInfo(Path.Combine(Application.StartupPath,"AboutBox.dll"));

if (aBoxFile.Exists) { //如果存在
 try { //預防意外,比如不載不完整,非法DLL
  // 開始載入
  Assembly aBox = Assembly.LoadFrom(aBoxFile.FullName); 
  Type[] _t = aBox.GetTypes(); //獲得全部Type
  foreach (Type t in _t) { //遍曆
   //如果發現名稱空間和類名有相符的
   if (t.Namespace == "ArLi.CommonPrj" && t.Name == "ShowAboutBox") {
    //載入方法
    MethodInfo m = t.GetMethod("ShowOn");
    if (m != null) { //如果要載入的方法存在
     //建立執行個體
     object o = Activator.CreateInstance(t);
     //執行該方法,後面的this 是參數
     m.Invoke(o,new object[]{this});
    }
    else { //載入的方法不存在
     MessageBox.Show("File /"AboutBox.dll/" Invalid!/n/nMethod Error.");
    }
    return;
   }
  }
  MessageBox.Show("File /"AboutBox.dll/" Invalid!/n/nAssembly Name Error.");
 } //檔案、命名空間、方法都相符,但執行該DLL 內容出錯
 catch (System.NullReferenceException ex) {
  MessageBox.Show("File /"AboutBox.dll/" Invalid!");
 } //檔案非正常DLL
 catch (Exception ex) {
  MessageBox.Show("File /"AboutBox.dll/" Error: /n/n" + ex.Message);
 }
}
else { //檔案沒找到
 MessageBox.Show("File /"AboutBox.dll/" Missing!");
}

說明1: 如果直接用 type t = gettype("arli.comm...") 這樣也可以但如果此class 不存在就會出Exception
說明2:這種逆向反射動態載入無需定義裝配件資訊
說明3:此方法已經最大程度的進行了潛在的檢測,除非非合法的WinDLL(比如下載的不完整),否則不會進入到很慢的 try catch

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.