在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
大杂烩 一、数组初始化 1.一维数组 String[] str = new String[3] { "1","2","3"}; 2.二维数组 String[,] str = { { "1","2"}, {"3","4" }, {"5","6" } }; 二、数组排序 int[] str = {1,20,3,56,85,66,99,9556,464,48,1,115,1553 }; 三、数组合并 Array.Copy(str,str2,10);//从索引值0开始,取10个长度放入
引入命名空间:using System.Collections; 添加元素 string[] str = { "张三","李四","王五","赵六"}; 移除元素 arrayList.Remove("李四"); 查找元素 arrayList.IndexOf("王五");
//BinarySearch查找之前要排序 /*二分查找要求字典在顺序表中按关键码排序,即待查表为有序表。*/ arrayList.Sort(); arrayList.BinarySearch() 五、List using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /* 非泛型集合 ArrayList Hashtable 泛型集合 List<T> Dictionary<Tkey,Tvalue> */ namespace 装箱和拆箱 { class Program { static void Main(string[] args) { List<int> list = new List<int>(); list.AddRange(new int[] { 1, 2, 3, 4, 5, 6 }); foreach(var item in list) { Console.WriteLine(item); } list.RemoveAll(n=>n>2);//筛选移除 foreach(var item in list) { Console.WriteLine(item); } Console.ReadKey(); } } }
|
请发表评论