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 using System;
6 using System.Runtime.InteropServices;
7 using System.Runtime.CompilerServices;
8 using System.Collections.Generic;
9 
10 namespace System.Globalization
11 {
12     internal partial class CalendarData
13     {
LoadCalendarDataFromSystem(String localeName, CalendarId calendarId)14         private bool LoadCalendarDataFromSystem(String localeName, CalendarId calendarId)
15         {
16             return true;
17         }
18 
GetCalendars(String localeName, bool useUserOverride, CalendarId[] calendars)19         internal static int GetCalendars(String localeName, bool useUserOverride, CalendarId[] calendars)
20         {
21             return 1;
22         }
23 
SystemSupportsTaiwaneseCalendar()24         private static bool SystemSupportsTaiwaneseCalendar()
25         {
26             return false;
27         }
28 
GetTwoDigitYearMax(CalendarId calendarId)29         internal static int GetTwoDigitYearMax(CalendarId calendarId)
30         {
31             return 2029;
32         }
33     }
34 }
35