C# 参数数组

1、形参含有一个数组,数组必须放在最后。
2、参数数组是一个一维数组
3、不能将params 与ref 与out 修饰符结合起来
4、与参数数组对应的实参可以是同一参数名,也可以是任意多个与该数组元素一致的类型的变量。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication11
{
class Program
{

    static void Main(string[] args)
    {
        int[] a = { 1, 2, 3 };
        int i;
        int s = 0;
        P(ref s,a);
        Console.WriteLine("和为:{0}",s);
        for (i = 0; i < a.Length;i++ )
        {
            Console.WriteLine("a[{0}]={1}",i,a[i]);

        }
        P(ref s, 23, 45);
        Console.WriteLine("和为:{0}",s);
        Console.ReadKey();

    }

    static void P(ref int sum,params int []arr) {
        int i;
        for (i = 0; i <= arr.Length - 1;i++ )
        {
            sum = sum + arr[i];
            arr[i] = arr[i] * arr[i];
        }


    }
}

}
C# 参数数组_第1张图片

你可能感兴趣的:(C#,c#,参数数组)