我有2个日期作为整数。如何在c#中找到这两个整数之间的月差异?
例如:
Int32 beginDate= 20130307(yyyymmdd)
Int32 beginDate= 20140507(yyyymmdd)
我需要14个月的结果。
我已经尝试过了:
DateTime beginDatepar = Convert.ToDateTime(beginDate);
DateTime endDatepar = Convert.ToDateTime(beginDate);
int monthDifference = ((beginDatepar.Year - endDatepar.Year) * 12) +
beginDatepar.Month - endDatepar.Month;
但是当我将Int32转换为Datetime时,错误是“从'Int32'到'DateTime'的无效转换”
答案 0 :(得分:5)
您可以使用我的Noda Time库。它是专门为使这样的事情更简单而创建的。
// TODO: Encapsulate this conversion in a separate method
LocalDate start = new LocalDate(beginDate / 10000,
(beginDate / 100) % 100,
beginDate % 100);
LocalDate end = new LocalDate(endDate / 10000,
(endDate / 100) % 100,
endDate % 100);
Period period = Period.Between(start, end, PeriodUnits.Months);
int months = period.Months;
请注意,这将返回完整个月 - 因此,如果您将months
添加到start
,您将获得一个等于{{1}之前的值但是,如果您添加end
,则会严格遵循months + 1
。
例如,5月20日到7月10日将计为一个月,而不是两个月。
作为一个单独的问题,我强烈建议您首先停止将日期表示为这样的整数。追溯代码首先执行此操作并修复它。
答案 1 :(得分:0)
Int32 beginDate = 20130307;
Int32 endDate = 20140507;
Int32 year1 = beginDate / 10000;
Int32 year2 = endDate / 10000;
Int32 month1 = (beginDate % 10000) / 100;
Int32 month2 = (endDate % 10000) / 100;
Int32 MonthDiff = (12 * year1 + month1) - (12 * year2 + month2);
答案 2 :(得分:0)
如果您不需要小数部分,请尝试以下方法:
int beginDate = 20130307;
int endDate = 20140507;
int diff = ((endDate - beginDate) / 100);
int diff_month = (diff / 100) * 12 + diff % 100;