System.CultureAwareComparer.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( string obj ) : int
obj string
return int
        public override int GetHashCode(string obj)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
            if (this._ignoreCase)
            {
                return this._compareInfo.GetHashCodeOfString(obj, CompareOptions.IgnoreCase);
            }
            return this._compareInfo.GetHashCodeOfString(obj, CompareOptions.None);
        }
    }

Same methods

CultureAwareComparer::GetHashCode ( ) : int