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

◆ OptionalCalendars

virtual Calendar [] System.Globalization.CultureInfo.OptionalCalendars
get

Definition at line 333 of file CultureInfo.cs.

334 {
335 get
336 {
337 if (GlobalizationMode.Invariant)
338 {
339 return new GregorianCalendar[1]
340 {
341 new GregorianCalendar()
342 };
343 }
345 Calendar[] array = new Calendar[calendarIds.Length];
346 for (int i = 0; i < array.Length; i++)
347 {
349 }
350 return array;
351 }
352 }
static Calendar GetCalendarInstance(CalendarId calType)