public StampSet Clone() { StampSet stampSet = new StampSet(); stampSet.AddRange(this); return(stampSet); }
public bool Equals(StampSet otherStampSet) { if (otherStampSet == null) { throw new ArgumentNullException("otherStampSet"); } return(base.SetEquals(otherStampSet)); }