public Vertex GetMethodNameAndSigSignature(string name, Vertex signature) { MethodNameAndSigSignature sig = new MethodNameAndSigSignature( GetStringConstant(name), GetRelativeOffsetSignature(signature)); return(Unify(sig)); }
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)); }