如何使用linq来赋值两个列表,并使用int来创建一个新对象的列表

本文关键字:列表 int 创建 一个 新对象 对象 赋值 linq 何使用 两个 | 更新日期: 2023-09-27 18:15:21

我有:

List<int> keys; //These lists are the same size
List<int> reportKeys; //These lists are the same size
int reportType;

我想创建一个新的列表MyType:

List<MyType>
public class MyType
{
    public int Key {get;set;}
    public int ReportKey {get;set;}
    public int ReportType {get;set;}
}

我可以使用for循环来赋值:

var objects = new List<MyObject>();
for (var i = 0; i < keys.Count(); i++)
{
    objects.Add(new MyObject { Key = keys[i], ReportKey = reportKeys[i], ReportType = reportType };
}

是否有一种方法可以使用linq而不使用for循环?

如何使用linq来赋值两个列表,并使用int来创建一个新对象的列表

尝试使用Linq的Zip扩展方法:

var objects = keys.Zip(reportKeys, (key, reportKey) => new MyType
    {
        Key = key,
        ReportKey = reportKey,
        ReportType = reportType
    }).ToList();

您可以使用LINQ Zip(参考)

样本如下:

var result = keys.Zip(reportsKey, 
                     (key, reportKey) => new MyObject 
                                                { 
                                                    Key = key, 
                                                    ReportKey = reportKey, 
                                                    ReportType = reportType 
                                                 })
                 .ToList();