摘要: //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>();... 阅读全文
posted @ 2012-10-30 15:43 xust 阅读(116) 评论(0) 推荐(0)