當前位置: 首頁>>代碼示例>>C#>>正文


C# Globalization.ThaiBuddhistCalendar類代碼示例

本文整理匯總了C#中System.Globalization.ThaiBuddhistCalendar的典型用法代碼示例。如果您正苦於以下問題:C# ThaiBuddhistCalendar類的具體用法?C# ThaiBuddhistCalendar怎麽用?C# ThaiBuddhistCalendar使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


ThaiBuddhistCalendar類屬於System.Globalization命名空間,在下文中一共展示了ThaiBuddhistCalendar類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PosTest3

 public void PosTest3()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     DateTime dt = tbc.MinSupportedDateTime;
     int era = tbc.GetEra(dt);
     Assert.Equal(1, era);
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarGetEra.cs

示例2: PosTest1

 public void PosTest1()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     System.Globalization.Calendar gc = new GregorianCalendar();
     DateTime desiretdDT = gc.ToDateTime(1, 1, 1, 0, 0, 0, 0);
     Assert.Equal(tbc.MinSupportedDateTime, desiretdDT);
 }
開發者ID:noahfalk,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarMinSupportedDateTime.cs

示例3: PosTest4

 public void PosTest4()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     DateTime dt = new DateTime(2000, 2, 29);
     int era = tbc.GetEra(dt);
     Assert.Equal(1, era);
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarGetEra.cs

示例4: PosTest4

 public void PosTest4()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     DateTime dt = tbc.MinSupportedDateTime;
     int i = 0;
     VerificationHelper(dt, i);
 }
開發者ID:noahfalk,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarAddYears.cs

示例5: PosTest2

 public void PosTest2()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     Random rand = new Random(-55);
     int year = rand.Next(tbc.GetYear(tbc.MinSupportedDateTime), tbc.GetYear(tbc.MaxSupportedDateTime));
     Assert.Equal(year, tbc.ToFourDigitYear(year));
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarToFourDigitYear.cs

示例6: PosTest4

 public void PosTest4()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     int twoYearMax = 99;
     tbc.TwoDigitYearMax = twoYearMax;
     Assert.Equal(tbc.TwoDigitYearMax, twoYearMax);
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarTwoDigitYearMax.cs

示例7: PosTest1

        public void PosTest1()
        {
            System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
            Random rand = new Random(-55);
            int year = rand.Next(tbc.MinSupportedDateTime.Year + 543, tbc.MaxSupportedDateTime.Year + 543);
            int month = rand.Next(1, 13);
            int day;
            if (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);
            }

            int hour = rand.Next(0, 24);
            int minute = rand.Next(0, 60);
            int second = rand.Next(0, 60);
            int milliSecond = rand.Next(0, 1000);
            int era = 0;
            for (int i = 0; i < tbc.Eras.Length; i++)
            {
                era = tbc.Eras[i];
                DateTime dt = tbc.ToDateTime(year, month, day, hour, minute, second, milliSecond, era);
                DateTime desiredDT = tbc.ToDateTime(year, month, day, hour, minute, second, milliSecond);
                Assert.Equal(dt, desiredDT);
            }
        }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:29,代碼來源:ThaiBuddhistCalendarToDateTime.cs

示例8: PosTest3

        public void PosTest3()
        {
            System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
            DateTime dt = tbc.MaxSupportedDateTime;

            Assert.Equal(365, tbc.GetDayOfYear(dt));
        }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:7,代碼來源:ThaiBuddhistCalendarGetDayOfYear.cs

示例9: PosTest1

        public void PosTest1()
        {
            System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
            Random rand = new Random(-55);
            int year = rand.Next(tbc.MinSupportedDateTime.Year, tbc.MaxSupportedDateTime.Year);
            int month = rand.Next(1, 12);
            int day;
            if (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 = new DateTime(year, month, day);
            for (int i = 0; i < 7; i++)
            {
                for (int j = 0; j < 3; j++)
                {
                    int actualWeek = getWeekOfYear(dt, (CalendarWeekRule)j, (DayOfWeek)i);
                    int resultWeek = tbc.GetWeekOfYear(dt, (CalendarWeekRule)j, (DayOfWeek)i);
                    Assert.Equal(actualWeek, resultWeek);
                }
            }
        }
開發者ID:noahfalk,項目名稱:corefx,代碼行數:27,代碼來源:ThaiBuddhistCalendarGetWeekOfYear.cs

示例10: PosTest4

 public void PosTest4()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     tbc.TwoDigitYearMax = 2029;
     int year = 0;
     int expectedYear = 2000;
     Assert.Equal(expectedYear, tbc.ToFourDigitYear(year));
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:8,代碼來源:ThaiBuddhistCalendarToFourDigitYear.cs

示例11: PosTest1

 public void PosTest1()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     System.Globalization.Calendar gc = new GregorianCalendar();
     DateTime desiretdDT = gc.ToDateTime(9999, 12, 31, 23, 59, 59, 999);
     desiretdDT = desiretdDT.AddTicks(9999);
     Assert.Equal(tbc.MaxSupportedDateTime, desiretdDT);
 }
開發者ID:noahfalk,項目名稱:corefx,代碼行數:8,代碼來源:ThaiBuddhistCalendarMaxSupportedDateTime.cs

示例12: PosTest2

 public void PosTest2()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     Random rand = new Random(-55);
     int twoYearMax = rand.Next(99, tbc.MaxSupportedDateTime.Year + 543);
     tbc.TwoDigitYearMax = twoYearMax;
     Assert.Equal(tbc.TwoDigitYearMax, twoYearMax);
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:8,代碼來源:ThaiBuddhistCalendarTwoDigitYearMax.cs

示例13: NegTest2

 public void NegTest2()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     int year = 98;
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         tbc.TwoDigitYearMax = year;
     });
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:9,代碼來源:ThaiBuddhistCalendarTwoDigitYearMax.cs

示例14: NegTest1

 public void NegTest1()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     int year = 10000 + 543;
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         tbc.ToFourDigitYear(year);
     });
 }
開發者ID:er0dr1guez,項目名稱:corefx,代碼行數:9,代碼來源:ThaiBuddhistCalendarToFourDigitYear.cs

示例15: NegTest1

 public void NegTest1()
 {
     System.Globalization.Calendar tbc = new ThaiBuddhistCalendar();
     Random rand = new Random(-55);
     int year = rand.Next(tbc.MinSupportedDateTime.Year + 543, tbc.MaxSupportedDateTime.Year + 544);
     int era = 2;
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         tbc.GetMonthsInYear(year, era);
     });
 }
開發者ID:noahfalk,項目名稱:corefx,代碼行數:11,代碼來源:ThaiBuddhistCalendarGetMonthsInYear.cs


注:本文中的System.Globalization.ThaiBuddhistCalendar類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。