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

◆ GetCalendarDayInfo()

static bool System.Globalization.CalendarData.GetCalendarDayInfo ( string localeName,
CalendarId calendar,
uint calType,
out string[] outputStrings )
inlinestaticprivate

Definition at line 938 of file CalendarData.cs.

939 {
940 bool flag = true;
941 string[] array = new string[7];
942 int num = 0;
943 while (num < 7)
944 {
945 flag &= CallGetCalendarInfoEx(localeName, calendar, calType, out array[num]);
946 if (num == 0)
947 {
948 calType -= 7;
949 }
950 num++;
951 calType++;
952 }
954 return flag;
955 }
static bool CallGetCalendarInfoEx(string localeName, CalendarId calendar, uint calType, out int data)

References System.array, and System.Globalization.CalendarData.CallGetCalendarInfoEx().

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