C#獲得上個月第一天和最初一天日期的辦法。本站提示廣大學習愛好者:(C#獲得上個月第一天和最初一天日期的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#獲得上個月第一天和最初一天日期的辦法正文
本文實例講述了C#獲得上個月第一天和最初一天日期的辦法。分享給年夜家供年夜家參考。
詳細完成代碼以下:
int year = DateTime.Now.Year;//以後年
int mouth = DateTime.Now.Month;//以後月
int beforeYear = 0;
int beforeMouth = 0;
if (mouth <= 1)//假如以後月是一月,那末年份就要減1
{
beforeYear = year - 1;
beforeMouth =12;//上個月
}
else
{
beforeYear = year;
beforeMouth = mouth - 1;//上個月
}
string beforeMouthOneDay = beforeYear + "年" + beforeMouth + "月" + 1 + "日";//上個月第一天
string beforeMouthLastDay = beforeYear + "年" + beforeMouth + "月" + DateTime.DaysInMonth(year, beforeMouth) + "日";//上個月最初一天
上個月最初一天也能夠如許寫:
string beforeMouthLastDay = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddDays(-1).ToString("yyyy-MM-dd"); //獲得上個月最初一天日期
願望本文所述對年夜家的C#法式設計有所贊助。