加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – Linq区别仅在下一行匹配

发布时间:2020-12-15 18:09:28 所属栏目:百科 来源:网络整理
导读:我有一个包含以下信息的数据表: 365.00370.00369.59365.00365.00 - match with previous item365.00 - match with previous item 我只需要删除下一个匹配的项目,如下所示: 365.00370.00369.59365.00 我试过了: (from articlespricehistory in dt.AsEnumer
我有一个包含以下信息的数据表:
365.00
370.00
369.59
365.00
365.00 -> match with previous item
365.00 -> match with previous item

我只需要删除下一个匹配的项目,如下所示:

365.00
370.00
369.59
365.00

我试过了:

(from articlespricehistory in dt.AsEnumerable()
select new
{
   articlepricehistory_cost = articlespricehistory.Field<Double>("articlepricehistory_cost")
})
.DistinctBy(i => i.articlepricehistory_cost)
.ToList();

结果:

365.00
370.00
369.59

有任何想法吗?

解决方法

另一种方法:
public static IEnumerable<T> MyDistinct<T>(this IEnumerable<T> items) 
{
    T previous = default(T);
    bool first = true;
    foreach(T item in items)
    {
        if (first || !Equals(previous,item)) 
        {
            first = false;
            previous = item;
            yield return item;
        }
    }
}

或者,根据要求,使用选择器

public static IEnumerable<T> MyDistinct<T,U>(this IEnumerable<T> items,Func<T,U> selector) 
{
    U previous = default(U);
    bool first = true;
    foreach(T item in items)
    {
        U current = selector(item);
        if (first || !Equals(previous,current)) 
        {
            first = false;
            previous = current;
            yield return item;
        }
    }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读