摘要: 1. 如何获得某个月有多少天 DateTime.DaysInMonth(year,month); 2. 如何获得两个DateTime之间的差 (是指相差的天数) TimeSpan timeSpan = dt1-dt2; 可以得到相差的天数,小时数, 分数,秒数。 并且支持负数(当dt1 早于dt2时) 3. 打印DateTime 在用tostring()... 阅读全文
posted @ 2008-06-17 23:17 Simon.guo 阅读(4053) 评论(0) 推荐(0) 编辑