首页 > Windows开发 > 详细

C#可变参数params

时间:2019-01-04 20:54:26      阅读:122      评论:0      收藏:0      [点我收藏+]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TestParams:MonoBehaviour{
        
        private void Start(){
            test(1,2,3,4);
            test(1,4);
            
            int[] list= { 1, 2, 3, 4, 5, 6 };
            test(list);
        }
        
        private void test(params int[] list){
            
        }
        
}

C#可变参数params

原文:https://www.cnblogs.com/kingBook/p/10222306.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!