GregorianCalendar.GetMonthsInYear : GregorianCalendar « Development « VB.Net






GregorianCalendar.GetMonthsInYear

 

Imports System
Imports System.Globalization
Imports Microsoft.VisualBasic

Public Class SamplesGregorianCalendar   

   Public Shared Sub Main()
      Dim myCal As New GregorianCalendar()

      For y = 2001 To 2005
         Console.Write(ControlChars.Tab + "{0}", myCal.GetMonthsInYear(y, GregorianCalendar.CurrentEra))
      Next y
      Console.WriteLine()
   End Sub 
End Class 

   
  








Related examples in the same category

1.GregorianCalendar.GetDaysInMonth
2.GregorianCalendar.GetDaysInYear
3.GregorianCalendar.GetWeekOfYear
4.GregorianCalendar.IsLeapDay
5.GregorianCalendar.IsLeapMonth
6.GregorianCalendar.IsLeapYear determines whether the specified year in the specified era is a leap year.
7.GregorianCalendar.MaxSupportedDateTime
8.GregorianCalendarTypes Enumeration defines the different language versions of the Gregorian calendar.