summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Globalization/GregorianCalendarTypes.cs
blob: 46f13b00e0616a45d4711200e59b7cf81a54642b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Globalization
{
    // Note: The values of the members of this enum must match the coresponding values
    // in the CalendarId enum (since we cast between GregorianCalendarTypes and CalendarId).
    public enum GregorianCalendarTypes
    {
        Localized = CalendarId.GREGORIAN,
        USEnglish = CalendarId.GREGORIAN_US,
        MiddleEastFrench = CalendarId.GREGORIAN_ME_FRENCH,
        Arabic = CalendarId.GREGORIAN_ARABIC,
        TransliteratedEnglish = CalendarId.GREGORIAN_XLIT_ENGLISH,
        TransliteratedFrench = CalendarId.GREGORIAN_XLIT_FRENCH,
    }
}