System.Globalization.DateTimeFormatInfoScanner.GetFormatFlagGenitiveMonth C# (CSharp) Méthode

GetFormatFlagGenitiveMonth() static private méthode

static private GetFormatFlagGenitiveMonth ( String monthNames, String genitveMonthNames, String abbrevMonthNames, String genetiveAbbrevMonthNames ) : FORMATFLAGS
monthNames String
genitveMonthNames String
abbrevMonthNames String
genetiveAbbrevMonthNames String
Résultat FORMATFLAGS
        internal static FORMATFLAGS GetFormatFlagGenitiveMonth(String[] monthNames, String[] genitveMonthNames, String[] abbrevMonthNames, String[] genetiveAbbrevMonthNames)
        {
            // If we have different names in regular and genitive month names, use genitive month flag.
            return ((!EqualStringArrays(monthNames, genitveMonthNames) || !EqualStringArrays(abbrevMonthNames, genetiveAbbrevMonthNames))
                ? FORMATFLAGS.UseGenitiveMonth: 0);
        }