summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/System/Globalization/HijriCalendar.Unix.cs
blob: 446d39e598a2d954d1db3e85bfd625bf7e3733be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace System.Globalization
{
    public partial class HijriCalendar : Calendar
    {
        public static int GetHijriDateAdjustment()
        {
            //TODO: Implement this fully.
            return 0;
        }
    }
}