我需要在分组后用它的位置索引项目列表
var result = from i in items
group i by i.name into g
select new { groupname = g.Key,
index = //need to get the index of the item
};
如何使用 linq/lambda 获取列表的项目索引?