C # datetime date plus 1 days minus one month minus one month, etc method

Source: Internet
Author: User

//TodayDateTime.Now.Date.ToShortDateString (); //yesterday, it was today's date minus one.DateTime.Now.AddDays (-1).   ToShortDateString (); //tomorrow, in the same vein, add aDateTime.Now.AddDays (1).     ToShortDateString (); //This week, knowing that the day of the week is the first day of the week and that the first day of the week is a few days ago, it is important to note that every week here is from Sunday to SaturdayDateTime.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 do not understand, then look at the Chinese display of the day of the week should understand the method//since DayOfWeek returns the number of days of the week, we want to convert it into Chinese characters to facilitate our reading, some people may use switch to a control, in fact, not so troublesomestring[] Day =New string[] {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday" };     Day[convert.toint16 (DateTime.Now.DayOfWeek)]; //last week, the same thing, a week is 7 days, last week is this week minus 7 days, and next week is the sameDateTime.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 weekDateTime.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 is definitely number 1th, and the last day is the next month minus another day. Of course it's right.//the general wordingDateTime.Now.Year.ToString () + DateTime.Now.Month.ToString () +"1";//First dayDateTime.Parse (DateTime.Now.Year.ToString () + DateTime.Now.Month.ToString () +"1"). AddMonths (1). AddDays (-1). ToShortDateString ();//Last day//It 's easier to use ToString's character formatting in C #DateTime.Now.ToString ("yyyy-mm-01"); DateTime.Parse (DateTime.Now.ToString ("yyyy-mm-01")). AddMonths (1). AddDays (-1).     ToShortDateString (); //last month, minus one monthDateTime.Parse (DateTime.Now.ToString ("yyyy-mm-01")). AddMonths (-1).   ToShortDateString (); DateTime.Parse (DateTime.Now.ToString ("yyyy-mm-01")). AddDays (-1).   ToShortDateString (); //next month, add a month.DateTime.Parse (DateTime.Now.ToString ("yyyy-mm-01")). AddMonths (1).   ToShortDateString (); DateTime.Parse (DateTime.Now.ToString ("yyyy-mm-01")). AddMonths (2). AddDays (-1).   ToShortDateString (); //after 7 daysDateTime.Now.Date.ToShortDateString (); DateTime.Now.AddDays (7).   ToShortDateString (); //7 days agoDateTime.Now.AddDays (-7).   ToShortDateString ();     DateTime.Now.Date.ToShortDateString (); //This year, formatting with ToString's characters makes it easy to figure out the first and last day of the yearDateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")).   ToShortDateString (); DateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")). AddYears (1). AddDays (-1).   ToShortDateString (); //last year, no more explaining.DateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")). AddYears (-1).   ToShortDateString (); DateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")). AddDays (-1).   ToShortDateString (); //next yearDateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")). AddYears (1).   ToShortDateString (); DateTime.Parse (DateTime.Now.ToString ("yyyy-01-01")). AddYears (2). AddDays (-1).     ToShortDateString (); //this quarter, many people will feel the difficulty here, need to write a long process to judge. In fact, we all know that four quarters a year, three months a quarter//First we push the date to the first month of the quarter, and then the first day of the month is the first day of the quarter.DateTime.Now.AddMonths (0-((DateTime.Now.Month-1) %3)). ToString ("yyyy-mm-01"); //Similarly, the last day of the quarter is the first day of the next quarter minus oneDateTime.Parse (DateTime.Now.AddMonths (3-((DateTime.Now.Month-1) %3)). ToString ("yyyy-mm-01")). AddDays (-1).   ToShortDateString (); //next quarter, I believe you all know .... FinishDateTime.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 quarterDateTime.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 ();

C # datetime date plus 1 days minus one month minus one month, etc method

C # datetime date plus 1 days minus a month minus one month, etc.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.