C# 如何利用反射來載入程式集,並呼叫程式集中有關類的方法

weixin_33816946發表於2011-09-27

假設在C盤根目錄下有個Dog的Dll程式集檔案,該程式集檔案中包含類Dog 該類中有個狗叫幾聲的方法,如何通過反射來載入這個C:\Dog.dll,並且呼叫Dog類裡面的Sound方法呢:

public class Dog

    public void Sound(int count)

    { Console.WriteLine("叫了{0}聲",count); }

}

具體如下:

首先反射主要用到了System.Reflection名稱空間,所以程式中一定要引用這個名稱空間。

using System.Reflection;
寫個測試方法如下:

public void Test()

{

  string assemblyFilePath= @"C:\Dog.dll";

  Assembly ass= Assembly.LoadFile(assemblyFilePath);

  Type t = ass.GetType("Dog",false,false);

  MethodInfo  info = t.GetMethod("Sound");

 object instance = Activator.CreateInstance(t);

 info.Invoke(instance,new object[]{2});//狗叫了兩聲

}

相關文章