ThaiBuddhistCalendar.GetMonthsInYear Method (Int32, Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Returns the number of months in the specified year in the specified era.

Namespace:  System.Globalization
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Overrides Function GetMonthsInYear ( _
    year As Integer, _
    era As Integer _
) As Integer
public override int GetMonthsInYear(
    int year,
    int era
)

Parameters

Return Value

Type: System..::.Int32
The number of months in the specified year in the specified era.

Exceptions

Exception Condition
ArgumentOutOfRangeException

year is outside the range supported by the calendar.

-or-

era is outside the range supported by the calendar.

Examples

The following code example calls the GetMonthsInYear method for five years in each era.

Imports System.Globalization

Public Class Example
   Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
      ' Creates and initializes a ThaiBuddhistCalendar.
      Dim myCal As New ThaiBuddhistCalendar()

      ' Displays the header.
      outputBlock.Text &= "YEAR" + ControlChars.Tab
      Dim y As Integer
      For y = 2544 To 2548
         outputBlock.Text += String.Format(ControlChars.Tab + "{0}", y)
      Next 
      outputBlock.Text &= vbCrLf

      ' Displays the value of the CurrentEra property.
      outputBlock.Text &= "CurrentEra:"
      For y = 2544 To 2548
         outputBlock.Text += String.Format(ControlChars.Tab + "{0}", myCal.GetMonthsInYear(y, ThaiBuddhistCalendar.CurrentEra))
      Next 
      outputBlock.Text &= vbCrLf

      ' Displays the values in the Eras property.
      For i As Integer = 0 To myCal.Eras.Length - 1
         outputBlock.Text += String.Format("Era {0}:" + ControlChars.Tab, myCal.Eras(i))
         For y = 2544 To 2548
            outputBlock.Text += String.Format(ControlChars.Tab + "{0}", myCal.GetMonthsInYear(y, myCal.Eras(i)))
         Next 
         outputBlock.Text &= vbCrLf
      Next 
   End Sub 
End Class 
' This example produces the following output.
'       YEAR            2544    2545    2546    2547    2548
'       CurrentEra:     12      12      12      12      12
'       Era 1:          12      12      12      12      12
using System;
using System.Globalization;


public class Example
{

   public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {

      // Creates and initializes a ThaiBuddhistCalendar.
      ThaiBuddhistCalendar myCal = new ThaiBuddhistCalendar();

      // Displays the header.
      outputBlock.Text += "YEAR\t";
      for (int y = 2544; y <= 2548; y++)
         outputBlock.Text += String.Format("\t{0}", y);
      outputBlock.Text += "\n";

      // Displays the value of the CurrentEra property.
      outputBlock.Text += "CurrentEra:";
      for (int y = 2544; y <= 2548; y++)
         outputBlock.Text += String.Format("\t{0}", myCal.GetMonthsInYear(y, ThaiBuddhistCalendar.CurrentEra));
      outputBlock.Text += "\n";

      // Displays the values in the Eras property.
      for (int i = 0; i < myCal.Eras.Length; i++)
      {
         outputBlock.Text += String.Format("Era {0}:\t", myCal.Eras[i]);
         for (int y = 2544; y <= 2548; y++)
            outputBlock.Text += String.Format("\t{0}", myCal.GetMonthsInYear(y, myCal.Eras[i]));
         outputBlock.Text += "\n";
      }

   }

}

/*
This code produces the following output.

YEAR            2544    2545    2546    2547    2548
CurrentEra:     12      12      12      12      12
Era 1:          12      12      12      12      12

*/

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

ThaiBuddhistCalendar Class

GetMonthsInYear Overload

System.Globalization Namespace

CurrentEra

ThaiBuddhistEra

Eras

GetDaysInYear

GetDaysInMonth