我想遍歷列表集合中的對象的DateTime屬性...日期時間對象的計數
例如。樹認爲,與所有的課程中列出了一個名稱下正常工作:
// Sorting on name with the courses beneath it:
// *list* is a List<ClsStandholder>;
private void ShowNameWithCourses()
{
treeViewList.Nodes.Clear();
for (int i=0; i < list.Count; i++) {
treeViewList.Nodes.Add(list[i].name);
for (int j=0; j < list[i].courses.Count; j++) {
treeViewList.Nodes[i].Nodes.Add(list[i].courses[j]);
}
treeviewList.ExpandAll();
}
}
這完美的作品......在那裏我有麻煩試圖排序日期,通過日期的計數迭代。
for (int j=0; j < list[i].SubscriptionDate. // how do i put some sort of count for this?
似乎沒有財產循環輸入的所有日期。
什麼`list`變量的類型,並且是`SubscriptionDate`財產只是一個'日期時間`? – 2010-12-04 14:34:38