GetHashCode() public method

public GetHashCode ( ) : int
return int
示例#1
0
        public override int GetHashCode()
        {
            int num = base.GetHashCode();

            if (parameters != null)
            {
                num ^= parameters.GetHashCode();
            }
            return(num);
        }
示例#2
0
        public override int GetHashCode()
        {
            int hc = base.GetHashCode();

            if (parameters != null)
            {
                hc ^= parameters.GetHashCode();
            }

            return(hc);
        }