如果我有 3 个来自不同来源的 DateTime 列表
List<Datetime> list1 = GetListOfDates();
List<Datetime> list2 = GetAnotherListOfDates();
List<Datetime> list3 = GetYetAnotherListOfDates();
返回所有 3 个列表中存在的 DateTime 列表的最快方法是什么。有一些 LINQ 语句吗?
如果我有 3 个来自不同来源的 DateTime 列表
List<Datetime> list1 = GetListOfDates();
List<Datetime> list2 = GetAnotherListOfDates();
List<Datetime> list3 = GetYetAnotherListOfDates();
返回所有 3 个列表中存在的 DateTime 列表的最快方法是什么。有一些 LINQ 语句吗?
List<DateTime> common = list1.Intersect(list2).Intersect(list3).ToList();
HashSet<DateTime> common = new HashSet<DateTime>( list1 );
common.IntersectWith( list2 );
common.IntersectWith( list3 );
对于HashSet
此类任务,该类比使用Enumerable.Intersect
.
更新:确保您的所有值都相同DateTimeKind
。
var resultSet = list1.Intersect<DateTime>(list2).Intersect<DateTime>(list3);
您可以与列表相交:
var resultSet = list1.Intersect<DateTime>(list2);
var finalResults = resultSet.Intersect<DateTime>(list3);
foreach (var result in finalResults) {
Console.WriteLine(result.ToString());
}