ArrayList
次のフィールドを含むオブジェクトを含むC#があります。に約10個のオブジェクトがありArrayList
ます。私の問題は、DateTime変数であるシステムで利用可能なものにArrayList
基づいてソートする必要があることです。StartDate
public int id { get; set; }
public string title {get; set;}
public bool allDay { get; set; }
public string start { get; set; }
public string end { get; set; }
public string color { get; set; }
public DateTime startDate { get; set; }
public DateTime endDate { get; set; }
public string Location { get; set; }
public string StartDatestr { get; set; }
public string EndDatestr { get; set; }
public string StartTime { get; set; }
public string EndTime { get; set; }
public bool Alert { get; set; }
public bool Repeat { get; set; }
public Int32 RepeatDays { get; set; }
public Int32 CalendarID { get; set; }
public int CustomerNo { get; set; }
public string CustomerName { get; set; }
public bool IsProspect { get; set; }
public string Description { get; set; }
誰かが私を教えてくれませんか?私は試し.Sort()
ましたが、何もしません(ArrayList
私が知っているオブジェクトがあるソートを試みるためのダンプ)。
前もって感謝します。
アップデート:
List<Appointment> appointments = new List<Appointment>();
上記のように作成しましたList
。今、私はそれを並べ替えることができますか?