System.OrdinalComparer.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hashCode = "OrdinalComparer".GetHashCode();
            if (!this._ignoreCase)
            {
                return hashCode;
            }
            return ~hashCode;
        }

Same methods

OrdinalComparer::GetHashCode ( string obj ) : int