EqualStringArrays() private static method

private static EqualStringArrays ( string array1, string array2 ) : bool
array1 string
array2 string
return bool
Example #1
0
 // Token: 0x06002E16 RID: 11798 RVA: 0x000B0C50 File Offset: 0x000AEE50
 internal static FORMATFLAGS GetFormatFlagGenitiveMonth(string[] monthNames, string[] genitveMonthNames, string[] abbrevMonthNames, string[] genetiveAbbrevMonthNames)
 {
     if (DateTimeFormatInfoScanner.EqualStringArrays(monthNames, genitveMonthNames) && DateTimeFormatInfoScanner.EqualStringArrays(abbrevMonthNames, genetiveAbbrevMonthNames))
     {
         return(FORMATFLAGS.None);
     }
     return(FORMATFLAGS.UseGenitiveMonth);
 }