2

我必须有一个具有 DateTime 属性的对象列表,并且我需要对该列表进行排序,以便日期最接近的对象DateTime.Now在列表中排在第一位。

我尝试了以下方法:

nodes.Sort((x, y) => DateTime.Compare(
         DateTime.Now, 
         DateTime.Parse(x.GetProperty("date").Value)));

但这不会返回正确的结果。

有谁知道这样做的好方法?:-)

4

5 回答 5

8

您可以按节点时间与当前时间之间的绝对差对它们进行排序。TimeSpan您可以使用Duration方法获取 a 的绝对时间:

DateTime now = DateTime.Now;
var ordered = nodes.OrderBy(n => (now - DateTime.Parse(n.GetProperty("date").Value)).Duration())
于 2013-07-17T11:35:03.690 回答
2

你试过OrderByDescending吗?

nodes.OrderByDescending(x => DateTime.Parse(x.GetProperty("date").Value));

不确定这是否正是您所追求的,但如果您要做的只是按最近日期订购列表,这将完成这项工作。

于 2013-07-17T11:34:53.507 回答
0
from node in nodes
let diff = Math.Abs(DateTime.Now.Subtract(node.DateTime).TotalSeconds)
order by diff
select date
于 2013-07-17T11:36:36.597 回答
0

怎么样

nodes.Sort((x,y) => Math.Abs((DateTime.Now, DateTime.Parse(x.GetProperty ("date").Value).Ticks))
于 2013-07-17T11:36:59.630 回答
0
class Program
{
    static void Main(string[] args)
    {
        Program p = new Program();
        var recs = p.ReadVisitorsByMonthly();
        Console.WriteLine();

        foreach (var r in recs)
        {
            Console.WriteLine(r);
        }

        Console.ReadLine();
    }

    public List<string> ReadVisitorsByMonthly()
    {
        Dictionary<int, int> retL = new Dictionary<int, int>();
        List<DateTime> liste = new List<DateTime>();
        List<string> ret = new List<string>();

        liste.Add(new DateTime(2016, 4, 1));
        liste.Add(new DateTime(2016, 4, 4));
        liste.Add(new DateTime(2016, 4, 5));
        liste.Add(new DateTime(2016, 4, 2));
        liste.Add(new DateTime(2016, 4, 3));
        liste.Add(new DateTime(2015, 11, 6));
        liste.Add(new DateTime(2015, 12, 7));
        liste.Add(new DateTime(2015, 12, 8));
        liste.Add(new DateTime(2015, 11, 4));
        liste.Add(new DateTime(2015, 12, 4));
        liste.Add(new DateTime(2016, 5, 1));
        liste.Add(new DateTime(2016, 5, 6));
        liste.Add(new DateTime(2016, 5, 2));
        liste.Add(new DateTime(2016, 5, 3));
        liste.Add(new DateTime(2016, 2, 8));
        liste.Add(new DateTime(2016, 2, 6));
        liste.Add(new DateTime(2016, 2, 2));
        liste.Add(new DateTime(2016, 2, 1));
        liste.Add(new DateTime(2016, 1, 3));
        liste.Add(new DateTime(2016, 3, 5));
        liste.Add(new DateTime(2016, 3, 4));
        liste.Add(new DateTime(2016, 3, 7));
        liste.Add(new DateTime(2016, 3, 3));
        liste.Add(new DateTime(2016, 3, 5));



        var list = liste.GroupBy(j => j.Month).ToList();

        foreach (var g in list)
        {
            Console.WriteLine(g.Key.ToString("D2") + " - " + g.Count());
            retL.Add(g.Key, g.Count());
        }


        var thisMonth = DateTime.Now.Month;

        var finalList = retL.OrderBy(j => (thisMonth - (j.Key > thisMonth ? j.Key - 12 : j.Key))).ToList();

        foreach (var kvp in finalList)
        {
            string strMonthName = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(kvp.Key);

            ret.Add(kvp.Key.ToString().PadRight(3) + strMonthName.PadRight(8) + kvp.Value);
        }

        return ret;
    }
}
于 2016-04-14T14:09:36.463 回答