假设我有我想调用的这个方法,它来自第三方库,所以我不能更改它的签名:
void PrintNames(params string[] names)
我正在编写这个需要调用的方法PrintNames
:
void MyPrintNames(string[] myNames) {
// How do I call PrintNames with all the strings in myNames as the parameter?
}
当然。编译器会将多个参数转换成一个数组,或者直接让你传入一个数组。
public class Test
{
public static void Main()
{
var b = new string[] {"One", "Two", "Three"};
Console.WriteLine(Foo(b)); // Call Foo with an array
Console.WriteLine(Foo("Four", "Five")); // Call Foo with parameters
}
public static int Foo(params string[] test)
{
return test.Length;
}
}
我会尝试
PrintNames(myNames);
如果您查看 MSDN 上的规范,您就会知道:http: //msdn.microsoft.com/en-us/library/w5zay9db.aspx
他们非常清楚地展示了它 - 请注意示例代码中的注释:
// An array argument can be passed, as long as the array
// type matches the parameter type of the method being called.