在開發(fā)過程中.數(shù)組和集合的處理是最讓我們擔(dān)心.一般會用for or foreach 來處理一些操作.這里介紹一些常用的集合跟數(shù)組的操作函數(shù). 首先舉例2個集合A,B. List<int> listA = new List<int> {1,2,3,5,7,9}; List<int> listB = new List<int> {13,4,17,29,2};
listA.AddRange(listB );把集合A.B合并 List<int> Result = listA.Union(listB).ToList<int>(); //剔除重復(fù)項(xiàng) List<int> Result = listA.Concat(listB).ToList<int>(); //保留重復(fù)項(xiàng) listA.BinarySearch("1");//判斷集合中是否包含某個值.如果包含則返回0
在舉例兩個數(shù)組 int[] i=new int[]{1,2}; int[] j=new int[]{2,3}; List<int> r = new List<int>(); r.AddRange(i); r.AddRange(j); int[] c = r.ToArray(); 合并數(shù)組 int[] x=i.Union(j).ToArray<int>(); //剔除重復(fù)項(xiàng) int[] x=i.Concat(j).ToArray<int>(); //保留重復(fù)項(xiàng) int n = Array.BinarySearch(i,3);//判斷數(shù)組中是否包含某個值.如果包含則返回0
|
|
來自: 歆馨 > 《開發(fā)測試》