params (C# リファレンス)
更新 : 2007 年 11 月
params キーワードを使用して、可変個引数リストを引数にとるメソッド パラメータを指定できます。
1 つのメソッド宣言内では、params キーワード以後にパラメータを追加できないため、1 つの params キーワードだけを使用できます。
使用例
public class MyClass
{
public static void UseParams(params int[] list)
{
for (int i = 0 ; i < list.Length; i++)
{
Console.Write(list[i] + " ");
}
Console.WriteLine();
}
public static void UseParams2(params object[] list)
{
for (int i = 0 ; i < list.Length; i++)
{
Console.Write(list[i] + " ");
}
Console.WriteLine();
}
static void Main()
{
UseParams(1, 2, 3);
UseParams2(1, 'a', "test");
// An array of objects can also be passed, as long as
// the array type matches the method being called.
int[] myarray = new int[3] {10,11,12};
UseParams(myarray);
}
}
/*
Output:
1 2 3
1 a test
10 11 12
*/
C# 言語仕様
詳細については、「C# 言語仕様」の次のセクションを参照してください。
- 10.6.1.4 パラメータ配列