List<int[]> listofArrays = new List<int[]>();listofArrays.Add(new int[] { 1,1 });listofArrays.Add(new int[] { 2,1 });
您如何在列表中找到{2,1}的索引?
我不想使用迭代循环.我想要一个简洁的方法,如PaRiMaL RaJ在Check if string array exists in list of string中提出的方法:
List.Select(ar2 => arr.All(ar2.Contains)).FirstOrDefault();
(如果给定字符串数组的成员存在于字符串数组列表中,则上面的代码将返回true)
解决方法var myArr = new int[] { 2,1 };List<int[]> listofArrays = new List<int[]>();listofArrays.Add(new int[] { 1,1 });listofArrays.Add(new int[] { 4,1 });listofArrays.Add(new int[] { 1,1 });int index = listofArrays.Findindex(l => Enumerable.SequenceEqual(myArr,l));总结
以上是内存溢出为你收集整理的在C#中的数组列表中查找数组的索引全部内容,希望文章能够帮你解决在C#中的数组列表中查找数组的索引所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)