c# – Linq表达式,用于验证列表是按升序还是降序排序

前端之家收集整理的这篇文章主要介绍了c# – Linq表达式,用于验证列表是按升序还是降序排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个IEnumerable< DateTime> var我需要验证它是按升序还是降序排序.

我可以使用for循环来做到这一点,但有没有办法使用LINQ表达式?

解决方法

var orderedByAsc = input.OrderBy(d => d);
if (input.SequenceEqual(orderedByAsc))
{
    Console.WriteLine("Ordered by Asc");
    return;
}

var orderedByDsc = input.OrderByDescending(d => d);
if (input.SequenceEqual(orderedByDsc))
{
    Console.WriteLine("Ordered by Dsc");
    return;
}

Console.WriteLine("not sorted");
原文链接:https://www.f2er.com/csharp/97450.html

猜你在找的C#相关文章