コード例 #1
0
        public Vertex GetMethodNameAndSigSignature(string name, Vertex signature)
        {
            MethodNameAndSigSignature sig = new MethodNameAndSigSignature(
                GetStringConstant(name),
                GetRelativeOffsetSignature(signature));

            return(Unify(sig));
        }
コード例 #2
0
        public override bool Equals(object obj)
        {
            MethodNameAndSigSignature other = obj as MethodNameAndSigSignature;

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

            return(Object.Equals(_methodName, other._methodName) && Object.Equals(_signature, other._signature));
        }