如何使用linq从索引数组转到对象集合?

时间:2011-09-18 03:18:15

标签: c# arrays linq collections

我的标题问题有点模糊,因为很难问,但我的情况是这样的:

我有一个int数组,它们是一个单独的对象集合的索引。

数组如下所示:

int[] indices = { 0, 2, 4, 9, 10, 11, 13, /* more (non-)sequential indices */ };

这些索引中的每一个都对应于我拥有的集合中该索引处的对象。

我希望能够使用我的数组中的索引构建这些对象的新集合。

我如何使用一些LINQ函数?

2 个答案:

答案 0 :(得分:5)

int[] indices = { 0, 2, 4, 9, 10, 11, 13 };
string[] strings = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q" };

IEnumerable<string> results = indices.Select(s => strings[s]);

// or List<string> results = indices.Select(s => strings[s]).ToList();

foreach (string result in results) // display results
{
    Console.WriteLine(result);
}

当然会将字符串等更改为您的对象集合。

答案 1 :(得分:4)

这样的事情应该有效:

List<int> items = Enumerable.Range(1,100).ToList();
int[] indices = { 0, 2, 4, 9, 10, 11, 13, /* more (non-)sequential indices */ };
var selectedItems = indices.Select( x => items[x]).ToList();

基本上,对于索引集合中的每个索引,您将使用索引器投射到items集合中的相应项目(无论这些项目是什么类型)。

如果你的目标收藏只是IEnumerable<SomeType>而不是你可以使用ElementAt()而不是索引器:

var selectedItems = indices.Select(x => items.ElementAt(x)).ToList();