Datetime dt = datetime. now; // The current time datetime. now. tostring ("yyyy-mm-dd hh: mm: SS") 24-hour datetime. now. tostring ("yyyy-mm-dd hh: mm: SS") in 12-hour format
Datetime startweek = DT. adddays (1-convert. toint32 (Dt. dayofweek. tostring ("D"); // Monday of the week
Datetime endweek = startweek. adddays (6); // Sunday of the week
Datetime startmonth = DT. adddays (1-Dt. Day); // the beginning of this month
Datetime endmonth = startmonth. addmonths (1). adddays (-1); // End of the month
// Datetime endmonth = startmonth. adddays (Dt. addmonths (1)-Dt). Days-1); // End of the month
Datetime startquarter = DT. addmonths (0-(Dt. Month-1) % 3). adddays (1-Dt. Day); // at the beginning of this quarter
Datetime endquarter = startquarter. addmonths (3). adddays (-1); // end of this quarter
Datetime startyear = new datetime (Dt. Year, 1, 1); // early this year
Datetime endyear = new datetime (Dt. year, 12, 31); // End of the year
For yesterday, tomorrow, last week, last month, last quarter, and last year, you only need to combine adddays (), addmonths (), and addyears.
Use of datetime in C #
// Such as annual sales, quarterly profit, and new customers this month
// The built-in datetime in C # can basically implement these functions. The clever use of datetime will make it much easier for you to handle these tasks.
// 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). tow.datestring (); // 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). to1_datestring ();
// 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). to1_datestring ();
// 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). to1_datestring ();