0

总之,我有许多 C# DLL,我想在运行时使用System.Reflection. 我使用的核心代码类似于

DLL = Assembly.LoadFrom(Path.GetFullPath(strDllName));
classType = DLL.GetType(String.Format("{0}.{0}", strNameSpace, strClassName));
if (classType != null)
{
    classInstance = Activator.CreateInstance(classType);
    MethodInfo methodInfo = classType.GetMethod(strMethodName);
    if (methodInfo != null)
    {
        object result = null;
        result = methodInfo.Invoke(classInstance, parameters);
        return Convert.ToBoolean(result);
    }
}

我想知道如何将参数数组传递给 DLL,ref以便从 DLL 内部发生的事情中提取信息。清楚地描述我想要的(但当然不会编译)将是

result = methodInfo.Invoke(classInstance, ref parameters);

我怎样才能做到这一点?

4

1 回答 1

2

ref参数的更改会反映在您传入的数组中MethodInfo.Invoke。你只需使用:

object[] parameters = ...;
result = methodInfo.Invoke(classInstance, parameters);
// Now examine parameters...

请注意,如果有问题的参数是参数数组(根据您的标题),则需要将其包装在另一个数组级别中:

object[] parameters = { new object[] { "first", "second" } };

就 CLR 而言,它只是一个参数。

如果这没有帮助,请展示一个简短但完整的示例 - 您不需要使用单独的 DLL 来演示,只需一个带有Main方法和被反射调用的方法的控制台应用程序就可以了。

于 2012-05-28T09:16:59.500 回答