int ISupportsInterning.GetHashCodeForInterning()
        {
            int hashCode = 0;

            unchecked {
                hashCode += 1000000007 * target.GetHashCode();
                hashCode += 1000000033 * identifier.GetHashCode();
                hashCode += 1000000087 * typeArguments.GetHashCode();
            }
            return(hashCode);
        }