Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The params parameter must be a single dimensional array
When using the params keyword, you must specify a single-dimensional array of the data type. For more information, see Methods (C# Programming Guide).
Example
The following sample generates CS0225:
// CS0225.cs
public class MyClass
{
public static void TestParams(params int a) // CS0225
// try the following line instead
// public static void TestParams(params int[] a)
{
}
public static void Main()
{
TestParams(1);
}
}