NextMonth() 공개 정적인 메소드

public static NextMonth ( this startMonth ) : YearAndMonth
startMonth this
리턴 YearAndMonth
예제 #1
0
 public void NextMonthTest()
 {
     for (var i = 1; i <= TimeSpec.MonthsPerYear; i++)
     {
         TimeTool.NextMonth(i).Month.Should().Be(i % TimeSpec.MonthsPerYear + 1);
     }
 }