//begin 剔除已经添加过的关键字
HashSet<string> mHashSet = new HashSet<string>(mKeywordUsingLst.Select(m => m.Word).Distinct());
List<RecommendWord> mRecommendWordLstExcepted = mRecommendWordLst.Where(m => mHashSet.Contains(m.Word) == false).ToList<RecommendWord>();
//end 剔除已经添加过的关键字

mRecommendWordLst.Except()

相关文章:

  • 2021-09-05
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2021-11-26
  • 2021-11-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案