System.OrdinalComparer.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 TextInfo.GetHashCodeOrdinalIgnoreCase(obj);
            }
            return obj.GetHashCode();
        }
    }

Same methods

OrdinalComparer::GetHashCode ( ) : int