作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一本字典:
private Dictionary<long, TimeStampedFetchedPlans> remainingPlansById = null;
在哪里
public class TimeStampedFetchedPlans
{
public DateTime TimeStamp { get; set; }
public List<TFetchedPlanReturn> RemainingPlans { get; set; }
public TimeStampedFetchedPlans(DateTime timeStamp, List<TFetchedPlanReturn> remainingPlans)
{
TimeStamp = timeStamp;
RemainingPlans = remainingPlans;
}
}
现在我想使用 LINQ 删除 Dictionary 中最旧的一半值。这能做到吗?
最佳答案
您可以通过创建一个新实例完全使用 LINQ 来完成:
remainingPlansById = remainingPlansById.OrderByDescending(x => x.Value.TimeStamp)
.Take(remainingPlansById.Count / 2)
.ToDictionary(x => x.Key, x => x.Value);
但是,使用循环不需要创建新字典:
var itemsToRemove = remainingPlansById.OrderBy(x => x.Value.TimeStamp)
.Take(remainingPlansById.Count / 2)
.ToList();
foreach(var itemToRemove in itemsToRemove)
remainingPlansById.Remove(itemToRemove.Key);
请注意,对于奇数项,两个版本的行为不同。对于字典中的 41 个项目,第一个版本将保留 20 个并删除 21,而第二个版本将删除 20 个并保留 21. 每个版本都可以轻松更改为另一个版本,您只需要决定您真正想要的行为。
关于c# - 如何在 C# 中使用 LINQ 根据值 (DateTime) 删除一半的字典项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15085419/
我是一名优秀的程序员,十分优秀!