namespace ClassLibraryB {
public class Class1 {
public void Add(int ii, int jj)
{
i = ii;
j = jj;
result = i + j;
}
public void Add2()
{
result = i + j;
}
}
}
这会被静态调用并给我一个答案
ClassLibraryB.Class1 objB = new ClassLibraryB.Class1();
objB.Add(4, 16);
objB.Add2();
kk = objB.result;
textBox1.Text += "Addition =" + kk.ToString() + "\r\n";
然而,当我尝试使用下面的方法调用dll时失败,因为它不是静态的
Assembly testAssembly = Assembly.LoadFile(strDLL);
Type calcType = testAssembly.GetType("ClassLibraryB.Class1");
object calcInstance = Activator.CreateInstance(calcType);
PropertyInfo numberPropertyInfo = calcType.GetProperty("i");
numberPropertyInfo.SetValue(calcInstance, 5, null);
PropertyInfo numberPropertyInfo2 = calcType.GetProperty("j");
numberPropertyInfo2.SetValue(calcInstance, 15, null);
int value2 = (int)numberPropertyInfo.GetValue(calcInstance, null);
int value3 = (int)numberPropertyInfo2.GetValue(calcInstance, null);
calcType.InvokeMember("Add2",BindingFlags.InvokeMethod | BindingFlags.Instance | BindingFlags.Public,
null, null, null);
PropertyInfo numberPropertyInfo3 = calcType.GetProperty("result");
int value4 = (int)numberPropertyInfo3.GetValue(calcInstance, null);
我只需要知道我必须对dll类进行哪些更改才能在此处调用
答案 0 :(得分:1)
您必须将该类型的实例传递给InvokeMember
calcType.InvokeMember("Add2", flags, null, calcInstance, null);
如果要创建插件,正确的做法是拥有三个程序集。
接口DLL由另外两个组件引用。您需要三个程序集,因为插件不应该知道您的应用程序的任何内容,并且应用程序不应该知道除了其接口之外的任何插件。这使得插件可以互换,不同的应用程序可以使用相同的插件。
界面装配Calculator.Contracts.dll
public interface ICalculator
{
int Add(int a, int b);
}
插件实施Calculator.dll
public class Calculator : ICalculator
{
public int Add(int a, int b)
{
return a + b;
}
}
现在您可以加载插件并在应用程序(exe)中以键入的方式使用它:
Assembly asm = Assembly.LoadFrom(strDLL);
string calcInterfaceName = typeof(ICalculator).FullName;
foreach (Type type in asm.GetExportedTypes()) {
Type interfaceType = type.GetInterface(calcInterfaceName);
if (interfaceType != null &&
(type.Attributes & TypeAttributes.Abstract) != TypeAttributes.Abstract) {
ICalculator calculator = (ICalculator)Activator.CreateInstance(type);
int result = calculator.Add(2, 7);
}
}