标签: c# linq
我有2个日期列表。
List<DateTime> 1st; List<DateTime> 2nd;
我希望在这2个日期内计算匹配日期。 我可以使用foreach logic&amp;得到结果。
但实现这一目标的最简单方法是什么?
答案 0 :(得分:3)
using System.Linq; 1st.Intersect(2nd).Count();
这应该有用。
您也可以使用linq进行内连接