计算两个日期相差几年几个月

 

public static class dateTimeDiff
{
    ///


    /// 计算日期间隔
    ///

    /// 要参与计算的其中一个日期字符串
    /// 要参与计算的另一个日期字符串
    /// 一个表示日期间隔的TimeSpan类型
    public static TimeSpan toResult(string d1, string d2)
    {
        try
        {
            DateTime date1 = DateTime.Parse(d1);
            DateTime date2 = DateTime.Parse(d2);
            return toResult(date1, date2);
        }
        catch
        {
            throw new Exception("字符串参数不正确!");
        }
    }
    ///
    /// 计算日期间隔
    ///

    /// 要参与计算的其中一个日期
    /// 要参与计算的另一个日期
    /// 一个表示日期间隔的TimeSpan类型
    public static TimeSpan toResult(DateTime d1, DateTime d2)
    {
        TimeSpan ts;
        if (d1 > d2)
        {
            ts = d1 - d2;
        }
        else
        {
            ts = d2 - d1;
        }
        return ts;
    }

    ///


    /// 计算日期间隔
    ///

    /// 要参与计算的其中一个日期字符串
    /// 要参与计算的另一个日期字符串
    /// 决定返回值形式的枚举
    /// 一个代表年月日的int数组,具体数组长度与枚举参数drf有关
    public static int[] toResult(string d1, string d2, diffFormat drf)
    {
        try
        {
            DateTime date1 = DateTime.Parse(d1);
            DateTime date2 = DateTime.Parse(d2);
            return toResult(date1, date2, drf);
        }
        catch
        {
            throw new Exception("字符串参数不正确!");
        }
    }
    ///
    /// 计算日期间隔
    ///

    /// 要参与计算的其中一个日期
    /// 要参与计算的另一个日期
    /// 决定返回值形式的枚举
    /// 一个代表年月日的int数组,具体数组长度与枚举参数drf有关
    public static int[] toResult(DateTime d1, DateTime d2, diffFormat drf)
    {
        #region 数据初始化
        DateTime max;
        DateTime min;
        int year;
        int month;
        int tempYear, tempMonth;
        if (d1 > d2)
        {
            max = d1;
            min = d2;
        }
        else
        {
            max = d2;
            min = d1;
        }
        tempYear = max.Year;
        tempMonth = max.Month;
        if (max.Month < min.Month)
        {
            tempYear--;
            tempMonth = tempMonth + 12;
        }
        year = tempYear - min.Year;
        month = tempMonth - min.Month;
        #endregion
        #region 按条件计算
        if (drf == diffFormat.Day)
        {
            TimeSpan ts = max - min;
            return new int[] { ts.Days };
        }
        if (drf == diffFormat.Month)
        {
            return new int[] { month + year * 12 };
        }
        if (drf == diffFormat.Year)
        {
            return new int[] { year };
        }
        return new int[] { year, month };
        #endregion
    }
}
///
/// 关于返回值形式的枚举
///

public enum diffFormat
{
    ///
    /// 年数和月数
    ///

    YearMonth,
    ///
    /// 年数
    ///

    Year,
    ///
    /// 月数
    ///

    Month,
    ///
    /// 天数
    ///

    Day,
}

 

例:
                DateTime dt1 = DateTime.Parse(dt.Rows[0]["mtime"].ToString());
                DateTime dt2 = DateTime.Parse(dt.Rows[count - 1]["mtime"].ToString());

                int[] kk = dateTimeDiff.toResult(dt1, dt2, diffFormat.Month);

 

转载于:https://www.cnblogs.com/94cool/archive/2011/06/13/2079795.html

你可能感兴趣的:(计算两个日期相差几年几个月)