gpt4 book ai didi

c# - 为什么方法调用会因参数异常而失败?

转载 作者:行者123 更新时间:2023-11-30 13:29:58 25 4
gpt4 key购买 nike

考虑来自 WinForms 应用程序的代码示例:

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
object[] parms = new object[1];
parms[0] = "foo";

DoSomething(parms);
}

public static string DoSomething(object[] parms)
{
Console.WriteLine("Something good happened");
return null;
}
}

它按预期工作,当您单击 button1 时,它会在控制台上打印“Something good happened”。

现在考虑这个代码示例,除了它使用反射调用 DoSomething 之外,它是相同的:

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
object[] parms = new object[1];
parms[0] = "foo";

System.Reflection.MethodInfo mi = typeof(Form1).GetMethod("DoSomething");
mi.Invoke(null, parms);

}

public static string DoSomething(object[] parms)
{
Console.WriteLine("Something good happened");
return null;
}
}

它在 mi.Invoke(null, parms) 行抛出 System.ArgumentException(“System.String”类型的对象无法转换为“System”类型.Object[]'.)

parms 显然是一个对象数组,而 DoSomething 的方法签名显然需要一个对象数组。那么为什么 invoke 将第一个对象从数组中拉出并试图传递它呢?

或者是发生了其他我不理解的事情?

最佳答案

MethodInfo.Invoke 需要一个对象数组,其中对象数组中的每个对象对应于方法的一个参数。对象数组中的第一个参数是第一个参数,数组中的第二个对象是第二个方法,等等。

由于您希望方法的第一个参数是 object[],因此您需要确保传递给 MethodInfo.Invoke 的对象数组中的第一个对象> 是一个对象数组,表示 DoSomething 应该使用的数组。

关于c# - 为什么方法调用会因参数异常而失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45338276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com