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


C# KoreanCalendar.GetMonth方法代码示例

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


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

示例1: PosTest2

 public void PosTest2()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     DateTime maxDT = DateTime.MaxValue;
     DateTime expectedValue = new GregorianCalendar().ToDateTime(maxDT.Year, maxDT.Month, maxDT.Day, 0, 0, 0, 0);
     DateTime actualValue;
     actualValue = kC.AddMonths(expectedValue, -2);
     Assert.Equal(kC.GetMonth(expectedValue) - 2, kC.GetMonth(actualValue));
 }
开发者ID:noahfalk,项目名称:corefx,代码行数:9,代码来源:KoreanCalendarAddMonths.cs

示例2: PosTest3

 public void PosTest3()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     DateTime leapDT = new GregorianCalendar().ToDateTime(2003, 1, 29, 0, 0, 0, 0);
     DateTime expectedValue = leapDT;
     DateTime actualValue;
     actualValue = kC.AddMonths(expectedValue, 1);
     Assert.Equal(kC.GetMonth(expectedValue) + 1, kC.GetMonth(actualValue));
     Assert.Equal(kC.GetDayOfMonth(expectedValue) - 1, kC.GetDayOfMonth(actualValue));
 }
开发者ID:noahfalk,项目名称:corefx,代码行数:10,代码来源:KoreanCalendarAddMonths.cs

示例3: PosTest4

        public void PosTest4()
        {
            System.Globalization.Calendar kC = new KoreanCalendar();
            DateTime tempDT = new GregorianCalendar().ToDateTime(2006, 7, 31, 0, 0, 0, 0);
            DateTime expectedValue = tempDT;
            DateTime actualValue;
            actualValue = kC.AddMonths(expectedValue, 2);

            Assert.Equal(kC.GetMonth(expectedValue) + 2, kC.GetMonth(actualValue));
            Assert.Equal(kC.GetDayOfMonth(actualValue) + 1, kC.GetDayOfMonth(expectedValue));
        }
开发者ID:noahfalk,项目名称:corefx,代码行数:11,代码来源:KoreanCalendarAddMonths.cs

示例4: PosTest3

 public void PosTest3()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     DateTime dateTime = new GregorianCalendar().ToDateTime(2004, 2, 29, 0, 0, 0, 0);
     int expectedValue = dateTime.Month;
     int actualValue;
     actualValue = kC.GetMonth(dateTime);
     Assert.Equal(expectedValue, actualValue);
 }
开发者ID:er0dr1guez,项目名称:corefx,代码行数:9,代码来源:KoreanCalendarGetMonth.cs

示例5: PosTest2

 public void PosTest2()
 {
     System.Globalization.Calendar kC = new KoreanCalendar();
     DateTime dateTime = new DateTime(DateTime.MaxValue.Ticks, DateTimeKind.Utc);
     int expectedValue = dateTime.Month;
     int actualValue;
     actualValue = kC.GetMonth(dateTime);
     Assert.Equal(expectedValue, actualValue);
 }
开发者ID:er0dr1guez,项目名称:corefx,代码行数:9,代码来源:KoreanCalendarGetMonth.cs


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