关于ASP.NET:如何在C#语言中计算两个日期之间的月份数

How can I calculate the numbers of month between two dates in C#

我想知道如何计算两个日期之间的月份数。有没有任何方法可以用C来计算它?

1
2
3
4
5
6
7
8
9
10
11
Eg1.    Date1 ="2011/11/01"  
        Date2 ="2012/02/01"    
Result. Numbers of Month =3  

 Eg2.  Date1 ="2012/01/31"
       Date2 ="2012/02/01"  
Result. Numbers of Month =1

 Eg3.  Date1 ="2012/01/01"  
       Date2 ="2012/02/28"
 Result. Numbers of Month =1


这将导致月份之间的差异:

1
int months = (Date2.Year - Date1.Year) * 12 + Date2.Month - Date1.Month;


我的Noda Time项目提供了:

1
2
3
4
LocalDate date1 = new LocalDate(2011, 11, 1);
LocalDate date2 = new LocalDate(2012, 2, 1);
Period period = Period.Between(date1, date2, PeriodUnits.Months);
long months = period.Months; // 3

有关更多信息,请参阅项目文档中的算术。