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

前端之家收集整理的这篇文章主要介绍了c# – Linq区别仅在下一行匹配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含以下信息的数据表:
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;
        }
    }
}
原文链接:https://www.f2er.com/csharp/97724.html

猜你在找的C#相关文章