// Today
Datetime. Now. Date. tow.datestring ();
// Yesterday, that is, one minus today's date
Datetime. Now. adddays (-1). tow.datestring ();
// Tomorrow, similarly, add one
Datetime. Now. adddays (1). tow.datestring ();
// This Week (to know the first day of this week, you must first know the day of the week, so that the first day of this week is the day of the day a few days ago, note that every week starts from Sunday to Saturday.
Datetime. Now. adddays (convert. todouble (0-convert. toint16 (datetime. Now. dayofweek). toshortdatestring ();
Datetime. Now. adddays (convert. todouble (6-convert. toint16 (datetime. Now. dayofweek). toshortdatestring ();
// If you still don't understand it, you should understand how to display the day of the week in Chinese.
// Because dayofweek returns the day of the week of the number, we need to convert it into Chinese characters to facilitate reading. Some people may use the switch to compare them one by one. In fact, this is not so troublesome.
String [] day = new string [] {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday "};
Day [convert. toint16 (datetime. Now. dayofweek)];
// Last week. Similarly, a week is 7 days. Last week is the week minus 7 days. The same is true for next week.
Datetime. Now. adddays (convert. todouble (0-convert. toint16 (datetime. Now. dayofweek)-7). toshortdatestring ();
Datetime. Now. adddays (convert. todouble (6-convert. toint16 (datetime. Now. dayofweek)-7). toshortdatestring ();
// Next week
Datetime. Now. adddays (convert. todouble (0-convert. toint16 (datetime. Now. dayofweek) + 7). toshortdatestring ();
Datetime. Now. adddays (convert. todouble (6-convert. toint16 (datetime. Now. dayofweek) + 7). toshortdatestring ();
// This month, many people will say that the first day of this month must be the first day of the month, and the last day is the second day of the month. Of course this is correct
// General statement
Datetime. Now. year. tostring () + datetime. Now. Month. tostring () + "1"; // The first day
Datetime. parse (datetime. now. year. tostring () + datetime. now. month. tostring () + "1 "). addmonths (1 ). adddays (-1 ). toshortdatestring (); // last day
// Easy to format with the tostring character in C #
Datetime. Now. tostring ("yyyy-MM-01 ");
Datetime. parse (datetime. Now. tostring ("yyyy-MM-01"). addmonths (1). adddays (-1). to1_datestring ();
// Last month, minus a month
Datetime. parse (datetime. Now. tostring ("yyyy-MM-01"). addmonths (-1). to1_datestring ();
Datetime. parse (datetime. Now. tostring ("yyyy-MM-01"). adddays (-1). to1_datestring ();
// Add a month to the next month
Datetime. parse (datetime. Now. tostring ("yyyy-MM-01"). addmonths (1). to1_datestring ();
Datetime. parse (datetime. Now. tostring ("yyyy-MM-01"). addmonths (2). adddays (-1). to1_datestring ();
// 7 days later
Datetime. Now. Date. tow.datestring ();
Datetime. Now. adddays (7). tow.datestring ();
// Seven days ago
Datetime. Now. adddays (-7). tow.datestring ();
Datetime. Now. Date. tow.datestring ();
// During the current year, it is easy for us to format with tostring characters to calculate the first and last days of the year.
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). to1_datestring ();
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). addyears (1). adddays (-1). to1_datestring ();
// For the previous year, do not explain it again
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). addyears (-1). to1_datestring ();
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). adddays (-1). to1_datestring ();
// Next year
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). addyears (1). to1_datestring ();
Datetime. parse (datetime. Now. tostring ("yyyy-01-01"). addyears (2). adddays (-1). to1_datestring ();
// This quarter, many people will find it difficult and need to write a long process to judge. In fact, we don't need to. We all know that a year, four quarters, one quarter, three months.
// First, we will push the date to the first month of the quarter, and then the first day of the month will be the first day of the quarter.
Datetime. Now. addmonths (0-(datetime. Now. Month-1) % 3). tostring ("yyyy-MM-01 ");
// Similarly, the last day of this quarter is the first day of the next quarter minus one
Datetime. parse (datetime. now. addmonths (3-(datetime. now. month-1) % 3 )). tostring ("yyyy-MM-01 ")). adddays (-1 ). toshortdatestring ();
// Next quarter, I believe you all know .... Close
Datetime. Now. addmonths (3-(datetime. Now. Month-1) % 3). tostring ("yyyy-MM-01 ");
Datetime. parse (datetime. now. addmonths (6-(datetime. now. month-1) % 3 )). tostring ("yyyy-MM-01 ")). adddays (-1 ). toshortdatestring ();
// Last quarter
Datetime. Now. addmonths (-3-(datetime. Now. Month-1) % 3). tostring ("yyyy-MM-01 ");
Datetime. parse (datetime. now. addmonths (0-(datetime. now. month-1) % 3 )). tostring ("yyyy-MM-01 ")). adddays (-1 ). toshortdatestring ();
This article is from the csdn blog. For more information, see the source:Http://blog.csdn.net/xycit/archive/2010/03/08/5356103.aspx