十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
一维数组的插入:
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网页空间、营销软件、网站建设、谢家集网站维护、网站推广。
实现效果:在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