2012-12-07 92 views
1

我有2 radMonthYearPicker(1爲起始日期另1爲結束日期) 我要計算這個2日之間不同的月份。一個月計算使用不同radMonthYearPicker

我的開始日期,我在我的月設定爲DEC和2012年 我的結束日期,我在我的月設定爲DEC和2013年

在此基礎上2 RadMonthYearPicker,在相隔一個月應該是12一個月

唯一的代碼,我可以找出是RadMonthYearPicker.selectedDate

PS我是不允許上傳圖像文件,因爲缺乏傳播點

+0

本月的差異?這是兩個日期之間的月數?向我們展示一個exameple(startdate,enddate和期望的結果)。 –

+0

我剛剛更新的內容 – user1861753

回答

0
int monthsApart = 12 * (startDate.Year - endDate.Year) + 
    startDate.Month - endDate.Month; 

int result = Math.Abs(monthsApart); 
+0

這不起作用 – user1861753

+1

澄清贏的回答是:'startDate'應作爲'RadMonthYearPicker1.SelectedDate'其中'RadMonthYearPicker1'應該由你給你的「開始日期」控件的名稱所取代。與「結束日期」使用的控件一樣。 –