EqualStringArrays() 개인적인 정적인 메소드

private static EqualStringArrays ( string array1, string array2 ) : bool
array1 string
array2 string
리턴 bool
예제 #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);
 }