一维数组的插入:
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网页空间、营销软件、网站建设、谢家集网站维护、网站推广。
实现效果:在1 2 3 后面插入4
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Array { class Program { static void Main(string[] args) { int[] array = new int[] { 1, 2, 3 }; int[] des = addArray(array, 4, 4); foreach (int item in des) { Console.WriteLine(item ); } Console.ReadLine(); } static int[] addArray(int[] bornArray, int index, int value) { ArrayList list = new ArrayList(bornArray ); if (index <0) { index =0 ; } if (index >bornArray .Length -1) { index = bornArray.Length; } list.Insert(index ,value ); int[] des = new int[list.Count ]; for (int i=0;i<list.Count;i++) { des[i] = (int)list[i]; } return des; } } }
当前文章:详解C#中一维数组的插入
网站路径:https://www.cdcxhl.com/article24/gphhce.html
成都网站建设公司_创新互联,为您提供定制网站、云服务器、网站策划、域名注册、网站设计、外贸网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联