标签:style blog color ar for sp div on log
1. params只能修饰方法的参数 而且只能是一维数组
2. 参数列表中只能有一个参数 并且放在参数列表的最后 但是不能有默认值
3. 调用的时候传递参数可以是一个数组,也可以是一个元素
string[] str = {"abc","dec" }; TestParams(str); TestParams(str[0]);//转换成一个长度为1的数组 TestParams("c","d");//转换成一个长度为2的数组 TestParams();
static void TestParams(params string[] str) { foreach (var item in str) { Console.WriteLine(item); } }
4. params变量永远不能为null,只能通过数组的长度来判断是否传值
标签:style blog color ar for sp div on log
原文地址:http://www.cnblogs.com/never-giveUp/p/4033336.html