91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解C#中一維數組的插入

發布時間:2020-09-04 11:30:27 來源:腳本之家 閱讀:136 作者:彬菌 欄目:編程語言

一維數組的插入:

實現效果:在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;
    }
  }
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

望江县| 公安县| 宜州市| 禹城市| 泰安市| 福鼎市| 龙江县| 贵阳市| 横峰县| 修水县| 昌吉市| 珠海市| 班玛县| 莆田市| 锦屏县| 鄂托克前旗| 双峰县| 玉屏| 句容市| 天祝| 威信县| 清水县| 罗甸县| 呼图壁县| 西盟| 民丰县| 冷水江市| 高唐县| 孙吴县| 巨鹿县| 营口市| 岢岚县| 渭源县| 平果县| 龙岩市| 忻州市| 海南省| 宁海县| 沐川县| 阿荣旗| 绵竹市|