日期:2014-05-17 浏览次数:20863 次
class Program
{
public static int Add(params int[] arr)
{
return 0;
}
}
Console.WriteLine(Program.Add(new[]{ 1, 2, 3 }));
Console.WriteLine(Program.Add({ 1, 2, 3 }));
int[] arr = { 1, 2, 3 };
Console.WriteLine(Program.Add( 1, 2, 3 ));