我想用 date
属性对我的列表进行排序。
这是我定制的课程:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Test.Web
{
public class cTag
{
public int id { get; set; }
public int regnumber { get; set; }
public string date { get; set; }
}
}
这是我想要排序的 List
:
List<cTag> Week = new List<cTag>();
我想根据 cTag
类的 date
属性对 List
进行排序。
日期的格式为 dd.MM.yyyy
。
我读过一些关于 IComparable
接口的东西,但是我不知道如何使用它。