1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Globalization
6 {
7     // Note: The values of the members of this enum must match the coresponding values
8     // in the CalendarId enum (since we cast between GregorianCalendarTypes and CalendarId).
9     public enum GregorianCalendarTypes
10     {
11         Localized = CalendarId.GREGORIAN,
12         USEnglish = CalendarId.GREGORIAN_US,
13         MiddleEastFrench = CalendarId.GREGORIAN_ME_FRENCH,
14         Arabic = CalendarId.GREGORIAN_ARABIC,
15         TransliteratedEnglish = CalendarId.GREGORIAN_XLIT_ENGLISH,
16         TransliteratedFrench = CalendarId.GREGORIAN_XLIT_FRENCH,
17     }
18 }
19