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());
    }
}
原文地址:https://www.cnblogs.com/archip/p/2921687.html