我加載我的DLL在C#與呼叫方法
Assembly assembly = Assembly.LoadFrom(dllPath); // late binding
Type classType = assembly.GetType("Namespace.Classname");
object readerInterface = Activator.CreateInstance(classType);
但如何能夠訪問在readerInterface我的方法/成員而不
type.InvokeMember("Methodname", BindingFlags.InvokeMethod |
BindingFlags.Instance | BindingFlags.Public, null, readerInterface, null);
- >中的形式readerInterface.write(); ???
非常感謝!
招呼leon22
是.net 4.0還是3.5? – 2011-05-19 12:54:58
3.5 .net on Visual Studio 2008 – leon22 2011-05-19 13:20:38
如果您有一個C++/CLI DLL,爲什麼不從C#項目中引用該DLL? – porges 2011-05-23 05:10:38