c# 日期相减

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编辑  收藏  举报