GetCaseInsensitiveHashCode() private méthode

private GetCaseInsensitiveHashCode ( String str ) : int
str String
Résultat int
Exemple #1
0
        //
        // Internal ordinal comparison functions
        //

        internal static int GetHashCodeOrdinalIgnoreCase(String s)
        {
            // This is the same as an case insensitive hash for Invariant
            // (not necessarily true for sorting, but OK for casing & then we apply normal hash code rules)
            return(Invariant.GetCaseInsensitiveHashCode(s));
        }
Exemple #2
0
 internal static int GetHashCodeOrdinalIgnoreCase(String s, bool forceRandomizedHashing, long additionalEntropy)
 {
     // This is the same as an case insensitive hash for Invariant
     // (not necessarily true for sorting, but OK for casing & then we apply normal hash code rules)
     return(Invariant.GetCaseInsensitiveHashCode(s, forceRandomizedHashing, additionalEntropy));
 }