/// <summary> /// Is other equal to this? /// </summary> public bool Equals(MethodReference other) { return((other != null) && Owner.Equals(other.Owner) && Name.Equals(other.Name) && Prototype.Equals(other.Prototype)); }
public MethodReference(CompositeType owner, string name, Prototype prototype) : this() { Owner = owner; Name = name; Prototype = prototype; }