System.Globalization.TextInfo.GetHashCodeOrdinalIgnoreCase C# (CSharp) Method

GetHashCodeOrdinalIgnoreCase() static private method

static private GetHashCodeOrdinalIgnoreCase ( String s ) : int
s String
return int
        internal static unsafe int GetHashCodeOrdinalIgnoreCase(String s) {
            return (nativeGetHashCodeOrdinalIgnoreCase(InvariantNativeTextInfo, s));
        }

Usage Example

Example #1
0
 internal static int GetHashCodeOrdinalIgnoreCase(string s)
 {
     return(TextInfo.GetHashCodeOrdinalIgnoreCase(s, false, 0L));
 }
All Usage Examples Of System.Globalization.TextInfo::GetHashCodeOrdinalIgnoreCase