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()); } }
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()); } }
转载于:https://www.cnblogs.com/archip/archive/2013/02/22/2921687.html