gpt4 book ai didi

c# - 从 linq var 添加项目到列表

转载 作者:IT王子 更新时间:2023-10-29 04:26:42 24 4
gpt4 key购买 nike

我有以下查询:

    public class CheckItems
{
public String Description { get; set; }
public String ActualDate { get; set; }
public String TargetDate { get; set; }
public String Value { get; set; }
}



List<CheckItems> vendlist = new List<CheckItems>();

var vnlist = (from up in spcall
where up.Caption == "Contacted"
select new CheckItems
{
Description = up.Caption,
TargetDate = string.Format("{0:MM/dd/yyyy}", up.TargetDate),
ActualDate = string.Format("{0:MM/dd/yyyy}", up.ActualDate),
Value = up.Value
}).ToList();

//接下来,当我尝试将 vnlist 添加到 vendlist 时,出现错误,因为我无法将其添加到我获得的列表中,并提示我有一些无效参数

         vendlist.Add(vnlist);

最佳答案

如果您需要将任何 IEnumerable 元素集合添加到您需要使用的列表中 AddRange .

vendlist.AddRange(vnlist);

关于c# - 从 linq var 添加项目到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9216207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com