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

◆ EqualStringArrays()

static bool System.Globalization.DateTimeFormatInfoScanner.EqualStringArrays ( string[] array1,
string[] array2 )
inlinestaticprivate

Definition at line 308 of file DateTimeFormatInfoScanner.cs.

309 {
310 if (array1 == array2)
311 {
312 return true;
313 }
314 if (array1.Length != array2.Length)
315 {
316 return false;
317 }
318 for (int i = 0; i < array1.Length; i++)
319 {
320 if (array1[i] != array2[i])
321 {
322 return false;
323 }
324 }
325 return true;
326 }

Referenced by System.Globalization.DateTimeFormatInfoScanner.GetFormatFlagGenitiveMonth().