Exemplo n.º 1
0
        public StampSet Clone()
        {
            StampSet stampSet = new StampSet();

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