【发布时间】:2020-11-01 15:53:32
【问题描述】:
我不知道如何从字典集合中获取最小日期和最大日期。
我的模型类如下所示:
Dictionary<string, IList<ErrorModel>> errorList
public class ErrorModel
{
public string Date { get; set; }
public int Total { get; set; }
public string Description { get; set; }
}
我想要做的是获取集合的最小日期和最大日期。
希望有人能帮帮我
【问题讨论】: