假设我们有这个自定义类型:
public class Holiday
{
public Guid Id { get; } = Guid.NewGuid();
public string holidayName { get; set; };
public DateTime fromDate { get; set; };
public DateTime toDate { get; set; };
public int year { get; set; };
}
我需要将假期列表 ( List<Holiday>) 转换为字典 ( Dictionary<int, List<Holiday>>)。键是不同的年份,值是属于该年份的假期列表。
我试图通过查看这个答案/问题来做到这一点 ,但没有成功。
慕尼黑5688855
相关分类