码迷,mamicode.com
首页 > 其他好文 > 详细

参数数组

时间:2014-07-31 09:46:45      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:for   ar   line   ad   public   数组   c   string   

 
参数数组:关键字params,接受参数,多余的都加到数组中
static void Main(string[] args)
        {
            meas("1","2","3")
        }
        public static void meas(string paramNumber, params string[] arrag)
        {
            for (int i = 0; i < arrag.Length; i++)
            {
                Console.Write(arrag[i]);
            }
            Console.ReadLine();
        }

参数数组,布布扣,bubuko.com

参数数组

标签:for   ar   line   ad   public   数组   c   string   

原文地址:http://www.cnblogs.com/huweijun/p/3879920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!