summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/System/Globalization/JapaneseCalendar.Unix.cs
blob: 1b2d08d95df3bf03726fdb54a893c9db48dc3996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 JapaneseCalendar : Calendar
    {
        public static int GetJapaneseEraCount()
        {
            //TODO: Implement this fully.
            throw new NotImplementedException();
        }

        public static bool GetJapaneseEraInfo(int era, out DateTimeOffset dateOffset, out string eraName, out string abbreviatedEraName)
        {
            //TODO: Implement this fully.
            throw new NotImplementedException();
        }
    }
}