GetHashCode() public method

public GetHashCode ( ) : int
return int
Exemplo n.º 1
0
        public override int GetHashCode()
        {
            int num = base.GetHashCode();

            if (parameters != null)
            {
                num ^= parameters.GetHashCode();
            }
            return(num);
        }
Exemplo n.º 2
0
        public override int GetHashCode()
        {
            int hc = base.GetHashCode();

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

            return(hc);
        }