当前位置: 首页>>代码示例>>C#>>正文


C# Calendar.GetDaysInMonth方法代码示例

本文整理汇总了C#中System.Globalization.Calendar.GetDaysInMonth方法的典型用法代码示例。如果您正苦于以下问题:C# Calendar.GetDaysInMonth方法的具体用法?C# Calendar.GetDaysInMonth怎么用?C# Calendar.GetDaysInMonth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Globalization.Calendar的用法示例。


在下文中一共展示了Calendar.GetDaysInMonth方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AssertEquivalent

        /// <summary>
        /// Checks that each day from the given start year to the end year (inclusive) is equal
        /// between the BCL and the Noda Time calendar. Additionally, the number of days in each month and year
        /// and the number of months (and leap year status) in each year is checked.
        /// </summary>
        internal static void AssertEquivalent(Calendar bcl, CalendarSystem noda, int fromYear, int toYear)
        {
            // We avoid asking the BCL to create a DateTime on each iteration, simply
            // because the BCL implementation is so slow. Instead, we just check at the start of each month that
            // we're at the date we expect.
            DateTime bclDate = bcl.ToDateTime(fromYear, 1, 1, 0, 0, 0, 0);
            for (int year = fromYear; year <= toYear; year++)
            {
                Assert.AreEqual(bcl.GetDaysInYear(year), noda.GetDaysInYear(year), "Year: {0}", year);
                Assert.AreEqual(bcl.GetMonthsInYear(year), noda.GetMonthsInYear(year), "Year: {0}", year);
                for (int month = 1; month <= noda.GetMonthsInYear(year); month++)
                {
                    // Sanity check at the start of each month. Even this is surprisingly slow.
                    // (These three tests make up about 20% of the total execution time for the test.)
                    Assert.AreEqual(year, bcl.GetYear(bclDate));
                    Assert.AreEqual(month, bcl.GetMonth(bclDate));
                    Assert.AreEqual(1, bcl.GetDayOfMonth(bclDate));

                    Assert.AreEqual(bcl.GetDaysInMonth(year, month), noda.GetDaysInMonth(year, month),
                        "Year: {0}; Month: {1}", year, month);
                    Assert.AreEqual(bcl.IsLeapYear(year), noda.IsLeapYear(year), "Year: {0}", year);
                    for (int day = 1; day <= noda.GetDaysInMonth(year, month); day++)
                    {
                        LocalDate nodaDate = new LocalDate(year, month, day, noda);
                        Assert.AreEqual(bclDate, nodaDate.ToDateTimeUnspecified(),
                            "Original calendar system date: {0:yyyy-MM-dd}", nodaDate);
                        Assert.AreEqual(nodaDate, LocalDate.FromDateTime(bclDate, noda));
                        Assert.AreEqual(year, nodaDate.Year);
                        Assert.AreEqual(month, nodaDate.Month);
                        Assert.AreEqual(day, nodaDate.Day);
                        bclDate = bclDate.AddDays(1);
                    }
                }
            }
        }
开发者ID:ivandrofly,项目名称:nodatime,代码行数:40,代码来源:BclEquivalenceHelper.cs

示例2: Age

        /// <summary>
        /// Initializes a new instance of <see cref="Age"/>.
        /// </summary>
        /// <param name="start">The date and time when the age started.</param>
        /// <param name="end">The date and time when the age ended.</param>
        /// <param name="calendar">Calendar used to calculate age.</param>
        public Age(DateTime start, DateTime end, Calendar calendar)
        {
            if (start > end) throw new ArgumentException("The starting date cannot be later than the end date.");

            var startDate = start.Date;
            var endDate = end.Date;

            _years = _months = _days = 0;
            _days += calendar.GetDayOfMonth(endDate) - calendar.GetDayOfMonth(startDate);
            if (_days < 0)
            {
                _days += calendar.GetDaysInMonth(calendar.GetYear(startDate), calendar.GetMonth(startDate));
                _months--;
            }
            _months += calendar.GetMonth(endDate) - calendar.GetMonth(startDate);
            if (_months < 0)
            {
                _months += calendar.GetMonthsInYear(calendar.GetYear(startDate));
                _years--;
            }
            _years += calendar.GetYear(endDate) - calendar.GetYear(startDate);

            var ts = endDate.Subtract(startDate);
            _totalDays = (Int32)ts.TotalDays;
        }
开发者ID:weedazarhub,项目名称:gryffe,代码行数:31,代码来源:Age.cs

示例3: Month

 // ----------------------------------------------------------------------
 public static TimeSpan Month( Calendar calendar, int year, YearMonth yearMonth )
 {
     return Days( calendar.GetDaysInMonth( year, (int)yearMonth ) );
 }
开发者ID:HoLoveSalt,项目名称:showhotel,代码行数:5,代码来源:Duration.cs

示例4: GetDateInfo


//.........这里部分代码省略.........
                    {
                        bc = true;
                        year = year.Substring(0, year.Length - "B.C.".Length);
                    }
                }
                
                int y = 1;
                int m = 1;
                int d = 1;
                            
                if ((!int.TryParse(month, out m)) && month != string.Empty)
                {			
                    // month name, find month number
                    foreach (string[] names in _monthNames)
                    {
                        int i = 1;
                        bool match = false;
                        foreach (string monthName in names)
                        {
                            if (string.Compare(monthName, month, true) == 0)
                            {
                                match = true;
                                break;
                            }
                            i ++;
                        }
                        if (match)
                        {
                            m = i;
                            break;
                        }
                    }
                }
                
                int.TryParse(day, out d);
                                                            
                // year could be of the form 1980/81
                // have 2 datetimes for each date ?
                // only having 1 won't lose the data, could prevent proper merge
                // though as the DateTime will be used for comparison
                if (year.IndexOf('/') != -1)
                {
                    year = year.Substring(0, year.IndexOf('/'));
                }

                // if we have the month as > 12 then must be mm dd yyyy
                // and not dd mm yyyy
                if (m > 12)
                {
                    int tmp = d;
                    d = m;
                    m = tmp;
                }
                
                if (int.TryParse(year, out y))
                {
                    if (m == 0)
                    {
                        m = 1;
                    }
                    if (d == 0)
                    {
                        d = 1;
                    }
                    if (y == 0)
                    {
                        y = 1;
                    }
                    
                    // ignore era, dates won't be bc, no way to get info back
                    // that far reliably so shouldn't be an issue
    
                    // try and correct for invalid dates, such as
                    // in presidents.ged with 29 FEB 1634/35

                    int daysInMonth = 0;

                    if (m > 0 && m <= 12 && y > 0 && y < 9999)
                    {
                        daysInMonth = calendar.GetDaysInMonth(y, m);
                        if (d > daysInMonth)
                        {
                            d = daysInMonth;
                        }
                    }
                    
                    try
                    {
                        ret = new DateTime(y, m, d, calendar);
                    }
                    catch
                    {
                        // if we fail to parse not much we can do, 
                        // just don't provide a datetime
                    }
                }
            }
            
            return ret;
        }
开发者ID:Bert6623,项目名称:Gedcom.Net,代码行数:101,代码来源:GedcomDate.cs

示例5: TestDaysInYear

	public void TestDaysInYear (Calendar calendar, int year)
	{
		var daysInYear = calendar.GetDaysInYear (year);
		var daysInMonths = 0;
		var monthInYear = calendar.GetMonthsInYear (year);
		for (var m = 1; m <= monthInYear; m++)
			daysInMonths += calendar.GetDaysInMonth (year, m);

		Assert.AreEqual (daysInYear, daysInMonths, string.Format("Calendar:{0} Year:{1}",calendar.GetType(), year));
	}
开发者ID:nlhepler,项目名称:mono,代码行数:10,代码来源:CalendarTest.cs

示例6: NextValid

        /// <summary>
        /// Get's the next valid second after the current .
        /// </summary>
        /// <param name="dateTime">The date time (fractions of a second are removed).</param>
        /// <param name="month">The month.</param>
        /// <param name="week">The week.</param>
        /// <param name="day">The day.</param>
        /// <param name="weekDay">The week day.</param>
        /// <param name="hour">The hour.</param>
        /// <param name="minute">The minute.</param>
        /// <param name="second">The second.</param>
        /// <param name="calendar">The calendar.</param>
        /// <param name="calendarWeekRule">The calendar week rule.</param>
        /// <param name="firstDayOfWeek">The first day of week.</param>
        /// <param name="inclusive">if set to <c>true</c> can return the time specified, otherwise, starts at the next second..</param>
        /// <returns>
        /// The next valid date (or <see cref="DateTime.MaxValue"/> if none).
        /// </returns>
        public static DateTime NextValid(
                this DateTime dateTime,
                Month month = Month.Every,
                Week week = Week.Every,
                Day day = Day.Every,
                WeekDay weekDay = WeekDay.Every,
                Hour hour = Hour.Zeroth,
                Minute minute = Minute.Zeroth,
                Second second = Second.Zeroth,
                Calendar calendar = null,
                CalendarWeekRule calendarWeekRule = CalendarWeekRule.FirstFourDayWeek,
                DayOfWeek firstDayOfWeek = DayOfWeek.Sunday,
                bool inclusive = false)
        {
            // Never case, if any are set to never, we'll never get a valid date.
            if ((month == Month.Never) || (week == Week.Never) ||
                (day == Day.Never) || (weekDay == WeekDay.Never) || (hour == Hour.Never) ||
                (minute == Minute.Never) ||
                (second == Second.Never))
                return DateTime.MaxValue;

            if (calendar == null)
                calendar = CultureInfo.CurrentCulture.Calendar;

            // Set the time to this second (or the next one if not inclusive), remove fractions of a second.
            dateTime = new DateTime(
                    dateTime.Year, dateTime.Month, dateTime.Day, dateTime.Hour, dateTime.Minute, dateTime.Second);
            if (!inclusive)
                dateTime = calendar.AddSeconds(dateTime, 1);

            // Every second case.
            if ((month == Month.Every) && (day == Day.Every) && (weekDay == WeekDay.Every) && (hour == Hour.Every) &&
                (minute == Minute.Every) && (second == Second.Every) &&
                (week == Week.Every))
                return calendar.AddSeconds(dateTime, 1);

            // Get days and months.
            IEnumerable<int> days = day.Days().OrderBy(dy => dy);
            IEnumerable<int> months = month.Months();

            // Remove months where the first day isn't in the month.
            int firstDay = days.First();
            if (firstDay > 28)
            {
                // 2000 is a leap year, so February has 29 days.
                months = months.Where(mn => calendar.GetDaysInMonth(2000, mn) >= firstDay);
                if (months.Count() < 1)
                    return DateTime.MaxValue;
            }

            // Get remaining date components.
            int y = calendar.GetYear(dateTime);
            int m = calendar.GetMonth(dateTime);
            int d = calendar.GetDayOfMonth(dateTime);

            int h = calendar.GetHour(dateTime);
            int n = calendar.GetMinute(dateTime);
            int s = calendar.GetSecond(dateTime);

            IEnumerable<int> weeks = week.Weeks();
            IEnumerable<DayOfWeek> weekDays = weekDay.WeekDays();
            IEnumerable<int> hours = hour.Hours().OrderBy(i => i);
            IEnumerable<int> minutes = minute.Minutes().OrderBy(i => i);
            IEnumerable<int> seconds = second.Seconds();
            
            do
            {
                foreach (int currentMonth in months)
                {
                    if (currentMonth < m)
                        continue;
                    if (currentMonth > m)
                    {
                        d = 1;
                        h = n = s = 0;
                    }
                    m = currentMonth;
                    foreach (int currentDay in days)
                    {
                        if (currentDay < d)
                            continue;
                        if (currentDay > d)
//.........这里部分代码省略.........
开发者ID:webappsuk,项目名称:CoreLibraries,代码行数:101,代码来源:ScheduleExtensions.cs

示例7: BuildCalendarUI

        public void BuildCalendarUI()
        {
            displayDate = DateTime.Now.AddDays(-1 * (DateTime.Now.Day - 1));
            displayMonth = displayDate.Month;
            displayYear = displayDate.Year;
            cultureInfo = new CultureInfo(CultureInfo.CurrentUICulture.LCID);
            sysCal = cultureInfo.Calendar;
            int iDaysInMonth = sysCal.GetDaysInMonth(displayDate.Year, displayDate.Month);
            iOffsetDays = (int)displayDate.DayOfWeek;
            int iWeekCount = 0;
            var weekControl = new DaysOfWeekControl();

            MonthViewGrid.Children.Clear();
            AddRowsToMonthGrid(iDaysInMonth, iOffsetDays);
            switch (displayDate.Month)
            {
                case 1:
                    MonthYearLabel.Content = "January" + " " + displayYear;
                    break;
                case 2:
                    MonthYearLabel.Content = "February" + " " + displayYear;
                    break;
                case 3:
                    MonthYearLabel.Content = "March" + " " + displayYear;
                    break;
                case 4:
                    MonthYearLabel.Content = "April" + " " + displayYear;
                    break;
                case 5:
                    MonthYearLabel.Content = "May" + " " + displayYear;
                    break;
                case 6:
                    MonthYearLabel.Content = "June" + " " + displayYear;
                    break;
                case 7:
                    MonthYearLabel.Content = "July" + " " + displayYear;
                    break;
                case 8:
                    MonthYearLabel.Content = "August" + " " + displayYear;
                    break;
                case 9:
                    MonthYearLabel.Content = "September" + " " + displayYear;
                    break;
                case 10:
                    MonthYearLabel.Content = "October" + " " + displayYear;
                    break;
                case 11:
                    MonthYearLabel.Content = "November" + " " + displayYear;
                    break;
                case 12:
                    MonthYearLabel.Content = "December" + " " + displayYear;
                    break;
            }


            for (int i = 1; i <= iDaysInMonth; i++)
            {
                if ((i != 1) && ((i + iOffsetDays - 1) % 7 == 0))
                {
                    //Add existing weekrow to month Grid
                    Grid.SetRow(weekControl, iWeekCount);
                    MonthViewGrid.Children.Add(weekControl);
                    //Add new Week Row Control
                    weekControl = new DaysOfWeekControl();
                    iWeekCount += 1;
                }
                //load each weekrow with a DayBoxControl whose label is set to day number
                var dayBox = new DayBoxControl();
                dayBox.DayNumberLabel.Content = i.ToString();
                dayBox.Tag = i;
                //Customize DayBox for today
                if (new DateTime(displayYear, displayMonth, i) == DateTime.Today)
                {
                    dayBox.DayNumberLabel.Background = dayBox.TryFindResource("OrangeGradientBrush") as Brush;
                }
             
                DateTime iday = new DateTime(displayYear,displayMonth,i);

                List<ECCAppointment> aptList = StudioRepository.GetAppointmentDayFromRepository(iday).ToList();
                if(aptList.Count > 0)
                {
                    foreach (var item in aptList)
                    {
                        DayBoxAppointmentControl apt = new DayBoxAppointmentControl();
                        apt.DisplayText.Text = item.AppointmentName;
                        apt.datetxtBlk.Text = iday.ToString();
                        dayBox.DayAppointmentsStack.Children.Add(apt);
                    }
                }

                Grid.SetColumn(dayBox, (i - (iWeekCount * 7) + iOffsetDays));
                weekControl.WeekRowGrid.Children.Add(dayBox);
            }
            Grid.SetRow(weekControl, iWeekCount);
            MonthViewGrid.Children.Add(weekControl);
        }
开发者ID:jacobmodayil,项目名称:GuestBookerStudio,代码行数:96,代码来源:MonthView.xaml.cs

示例8: YearDiff

        // ----------------------------------------------------------------------
        // extract of DateDiff.CalcYears()
        private static int YearDiff( DateTime date1, DateTime date2, Calendar calendar )
        {
            if ( date1.Equals( date2 ) )
            {
                return 0;
            }

            int year1 = calendar.GetYear( date1 );
            int month1 = calendar.GetMonth( date1 );
            int year2 = calendar.GetYear( date2 );
            int month2 = calendar.GetMonth( date2 );

            // find the the day to compare
            int compareDay = date2.Day;
            int compareDaysPerMonth = calendar.GetDaysInMonth( year1, month1 );
            if ( compareDay > compareDaysPerMonth )
            {
                compareDay = compareDaysPerMonth;
            }

            // build the compare date
            DateTime compareDate = new DateTime( year1, month2, compareDay,
                date2.Hour, date2.Minute, date2.Second, date2.Millisecond );
            if ( date2 > date1 )
            {
                if ( compareDate < date1 )
                {
                    compareDate = compareDate.AddYears( 1 );
                }
            }
            else
            {
                if ( compareDate > date1 )
                {
                    compareDate = compareDate.AddYears( -1 );
                }
            }
            return year2 - calendar.GetYear( compareDate );
        }
开发者ID:jwg4,项目名称:date-difference,代码行数:41,代码来源:CommunitySamples.cs


注:本文中的System.Globalization.Calendar.GetDaysInMonth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。