Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IcuGetCalendars()

static int System.Globalization.CalendarData.IcuGetCalendars ( string localeName,
CalendarId[] calendars )
inlinestaticpackage

Definition at line 430 of file CalendarData.cs.

431 {
432 int num = Interop.Globalization.GetCalendars(localeName, calendars, calendars.Length);
433 if (num == 0 && calendars.Length != 0)
434 {
435 calendars[0] = CalendarId.GREGORIAN;
436 num = 1;
437 }
438 return num;
439 }
static int GetCalendars(string localeName, CalendarId[] calendars, int calendarsCapacity)

References Interop.Globalization.GetCalendars().

Referenced by System.Globalization.CalendarData.GetCalendarsCore().