Returns an indication whether the specified year is a leap year. : Date Operation « Date Time « VB.Net






Returns an indication whether the specified year is a leap year.

  

Module IsLeapYear
   Public Sub Main()
      For year As Integer = 1994 to 2014
         If DateTime.IsLeapYear(year) Then
            Console.WriteLine("{0} is a leap year.", year)
            Dim leapDay As New Date(year, 2, 29)
            Dim nextYear As Date = leapDay.AddYears(1)
            Console.WriteLine("   One year from {0} is {1}.", _
                              leapDay.ToString("d"), _
                              nextYear.ToString("d"))
         End If
      Next
   End Sub
End Module

   
    
  








Related examples in the same category

1.Add time (days, hours) to current timeAdd time (days, hours) to current time
2.Date Time SubtractionDate Time Subtraction
3.Multiply Time SpanMultiply Time Span
4.Date Time and TimeSpan DemoDate Time and TimeSpan Demo
5.Add a day, a month and a year to a Date
6.Date = #11/4/2010 1:30:00AM#
7.CDate("10/26/2010 1:32:00 PM")
8.Arithmetic Operations with Dates and Times
9.Calculate the interval between the two dates
10.Display the date using the current (en-US) culture
11.Change the current culture to fr-FR and display the date
12.Change the current culture to ja-JP and display the date
13.Allow a leading space in the date string
14.Represents an instant in time, typically expressed as a date and time of day.
15.Create Date object from String
16.Date.Now, UtcNow and Today
17.Create Date from date string with time
18.Convert Date to string with fr-FR culture
19.Adds time interval to a specified date and time, yielding a new date and time.
20.Compare the difference between two Date value with Ticks
21.Compares two Date values
22.Gets the date component from String
23.Gets the day of the month from Date
24.Gets the milliseconds component of the date represented by this instance.
25.Ticks from a Date
26.Difference between local time and UTC
27.Display the ticks-per-time-unit fields
28.Add one and half Milliseconds
29.Gets the day of the week represented by this instance.
30.Returns the number of days in the specified month and year.
31.Find out the file age
32.whether time is based on local time, Coordinated Universal Time (UTC), or neither.
33.Reverse month and day to conform to the fr-FR culture