在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
先定义一个具有返回值(List<int>)的方法 List<int> fun(ref List<int> intcount, int a) { if (1 == a) return intcount; else { List<int> ii = new List<int>(); ii.Add(a - 1); intcount.AddRange(ii); return fun(ref intcount, a - 1); } } 调用这个方法,并接收返回值 List<int> intcounts = new List<int>(); fun(ref intcounts, 10); //返回的intcounts的结果是 9,8,7,6,5,4,3,2,1
|
请发表评论