摘要: List<UnRecruitInfo> recreuitList = dic["招聘会"] as List<UnRecruitInfo>; //需要对招聘会的列表重新排序 //排序规则:召开时间>=今天的,进行顺排(从今天到将来),其他的顺序不变(从今天到过去,即过期的) DateTime now = DateTime.Parse(DateTime.Now.ToShortDateString()), aTime, bTime; recreuitList.Sort(delegate(UnRecruitInfo a, UnRecruitInfo b 阅读全文
posted @ 2011-05-23 09:54 流失的痕迹 阅读(1782) 评论(0) 推荐(0) 编辑