System.Tests.DateTimeTests.IsLeapYear C# (CSharp) 메소드

IsLeapYear() 개인적인 메소드

private IsLeapYear ( int year, bool expected ) : void
year int
expected bool
리턴 void
        public static void IsLeapYear(int year, bool expected)
        {
            Assert.Equal(expected, DateTime.IsLeapYear(year));
        }
DateTimeTests