微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在C#中的数组列表中查找数组的索引

如果您有一个数组列表,如:
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));

原文地址:https://www.jb51.cc/csharp/92786.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐