我有一个数组,其中包含从索引 0 到 4 的 5 个值。我想将这些值存储在我的 5 个模型属性中。
public IEnumerable<fields> ConvertTList(List<string[]> rows)
{
var tList = new List<fields>();
foreach (var item in rows)
{
var ListReading = new fields
{
//model properties names are:
// date, user,campaign,adgroup,changes
};
tList.Add(ListReading);
}
return (tList);
}
这是我执行 foreach 时的代码,项目获得 5 个值。我想将值存储在模型中。我如何使用 linq 存储它们