Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            ExternalTypeSignature other = obj as ExternalTypeSignature;

            if (other == null)
            {
                return(false);
            }

            return(_externalTypeId == other._externalTypeId);
        }
Ejemplo n.º 2
0
        public Vertex GetExternalTypeSignature(uint externalTypeId)
        {
            ExternalTypeSignature sig = new ExternalTypeSignature(externalTypeId);

            return(Unify(sig));
        }