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


C# KoreanCalendar.IsLeapMonth方法代碼示例

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


在下文中一共展示了KoreanCalendar.IsLeapMonth方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PosTest4

 public void PosTest4()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     System.Globalization.Calendar gC = new GregorianCalendar();
     DateTime dateTime = gC.ToDateTime(1200, 2, 29, 0, 0, 0, 0);
     int year = dateTime.Year;
     int month = dateTime.Month;
     int era = gC.GetEra(dateTime);
     bool expectedValue = gC.IsLeapMonth(year, month, era);
     bool actualValue;
     actualValue = kC.IsLeapMonth(year + 2333, month, kC.GetEra(dateTime));
     Assert.Equal(expectedValue, actualValue);
 }
開發者ID:johnhhm,項目名稱:corefx,代碼行數:13,代碼來源:KoreanCalendarIsLeapMonth.cs

示例2: NegTest2

 public void NegTest2()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     int year = 0;
     int month = TestLibrary.Generator.GetInt16(-55) % 12 + 1;
     int era = 1;
     bool actualValue;
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         actualValue = kC.IsLeapMonth(year, month, era);
     });
 }
開發者ID:johnhhm,項目名稱:corefx,代碼行數:12,代碼來源:KoreanCalendarIsLeapMonth.cs

示例3: NegTest6

 public void NegTest6()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     int year = TestLibrary.Generator.GetInt16(-55) % 9999 + 2334;
     int month = TestLibrary.Generator.GetInt16(-55) % 12 + 1;
     // The KoreanEra is 1, however using an Era value of 0 defaults to "current era" for the calendar being used. In order to force
     // the ArgumentOutOfRangeException the era must not be 0 or 1
     int era = -1;
     bool actualValue;
     Assert.Throws<ArgumentOutOfRangeException>(() =>
     {
         actualValue = kC.IsLeapMonth(year, month, era);
     });
 }
開發者ID:johnhhm,項目名稱:corefx,代碼行數:14,代碼來源:KoreanCalendarIsLeapMonth.cs


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