summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/System/Globalization/GregorianCalendarTypes.cs
blob: a14010fe60a3ad845f2f8e2c6029633f1dd8be92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.

using System;

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).
    [Serializable]
    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,
    }
}