摘要: using System;public class DateExample{ public static void Main() { DateTime dt1 = new DateTime(2012,1,16); DateTime dt2 = new DateTime(2012,2,16); TimeSpan ts = dt2 - dt1; Console.WriteLine(ts.ToString()); }} 阅读全文
posted @ 2013-02-22 09:03 archip 阅读(187) 评论(0) 推荐(0) 编辑