在C#中,有没有办法将数组传递给一个接受可变长度参数的方法?

时间:2013-10-09 22:35:13

标签: c# .net

假设我想要调用此方法,并且它来自第三方库,因此我无法更改其签名:

void PrintNames(params string[] names)

我正在编写需要调用PrintNames的方法:

void MyPrintNames(string[] myNames) {
  // How do I call PrintNames with all the strings in myNames as the parameter?
}

2 个答案:

答案 0 :(得分:5)

我会尝试

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. 

答案 1 :(得分:5)

不确定。编译器会将多个参数转换为数组,或者直接传入数组。

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;
   }
}

Fiddle