我必须有一个具有DateTime属性的对象列表,我需要对此列表进行排序,以便最接近DateTime.Now
的对象在列表中排在第一位。
我尝试了以下内容:
nodes.Sort((x, y) => DateTime.Compare(
DateTime.Now,
DateTime.Parse(x.GetProperty("date").Value)));
但这不会返回正确的结果。
有谁知道这样做的好方法? : - )
答案 0 :(得分:7)
您可以通过节点时间和当前时间之间的绝对差异来对它们进行排序。您可以使用Duration方法获得TimeSpan
的绝对时间:
DateTime now = DateTime.Now;
var ordered = nodes.OrderBy(n => (now - DateTime.Parse(n.GetProperty("date").Value)).Duration())
答案 1 :(得分:2)
您是否尝试过OrderByDescending?
nodes.OrderByDescending(x => DateTime.Parse(x.GetProperty("date").Value));
不确定这是否完全你所追求的是什么,但如果您要做的就是按最近的日期订购列表,这将完成工作。
答案 2 :(得分:0)
from node in nodes
let diff = Math.Abs(DateTime.Now.Subtract(node.DateTime).TotalSeconds)
order by diff
select date
答案 3 :(得分:0)
怎么回合
nodes.Sort((x,y) => Math.Abs((DateTime.Now, DateTime.Parse(x.GetProperty ("date").Value).Ticks))
答案 4 :(得分: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;
}
}