System.Globalization.TaiwanCalendar.GetMonth C# (CSharp) Method

GetMonth() public method

public GetMonth ( System.DateTime time ) : int
time System.DateTime
return int
        public override int GetMonth(DateTime time) {
            return (helper.GetMonth(time));
        }

Usage Example

        public void PosTest1()
        {
            System.Globalization.Calendar tc = new TaiwanCalendar();
            Random rand = new Random(-55);
            int year = rand.Next(tc.MinSupportedDateTime.Year, tc.MaxSupportedDateTime.Year - 1911);
            int month = rand.Next(1, 12);
            int day;
            if (tc.IsLeapYear(year))
            {
                day = rand.Next(1, _DAYS_PER_MONTHS_IN_LEAP_YEAR[month] + 1);
            }
            else
            {
                day = rand.Next(1, _DAYS_PER_MONTHS_IN_NO_LEAP_YEAR[month] + 1);
            }

            DateTime dt = tc.ToDateTime(year, month, day, 0, 0, 0, 0);
            int actualMonth = dt.Month;
            Assert.Equal(tc.GetMonth(dt), actualMonth);
        }
All Usage Examples Of System.Globalization.TaiwanCalendar::GetMonth