Gets the list of calendars that can be used by the culture. : DateTimeFormatInfo « Date Time « C# / C Sharp






Gets the list of calendars that can be used by the culture.

  

using System;
using System.Globalization;


public class SamplesCultureInfo  {
   public static void Main()  {
      Calendar[] myOptCals = new CultureInfo("ar-SA").OptionalCalendars;
      foreach ( Calendar cal in myOptCals )  {
         if ( cal.GetType() == typeof( GregorianCalendar ) )  {
            GregorianCalendar myGreCal = (GregorianCalendar) cal;
            GregorianCalendarTypes calType = myGreCal.CalendarType;
            Console.WriteLine( "   {0} ({1})", cal, calType );
         }
         else  {
            Console.WriteLine( "   {0}", cal );
         }
      }
   }
}

   
    
  








Related examples in the same category

1.CultureInfo Provides information about a specific culture
2.Determines the specific cultures that use the Chinese language, and displays the parent culture
3.Gets or sets a DateTimeFormatInfo that defines the culturally appropriate format of displaying dates and times.
4.Custom Date and Time Format Strings
5.DateTimeFormatInfo Class
6.DateTimeFormatInfo.AbbreviatedMonthGenitiveNames
7.DateTimeFormatInfo.FullDateTimePattern
8.ALL the patterns
9.DateTimeFormatInfo.LongDatePattern
10.DateTimeFormatInfo.LongTimePattern
11.DateTimeFormatInfo.MonthDayPattern
12.DateTimeFormatInfo.RFC1123Pattern
13.DateTimeFormatInfo.ShortDatePattern
14.DateTimeFormatInfo.ShortTimePattern
15.DateTimeFormatInfo.SortableDateTimePattern
16.DateTimeFormatInfo.UniversalSortableDateTimePattern
17.DateTimeFormatInfo.YearMonthPattern
18.To Short Date Time
19.To Date Time from dmtf date