Пример #1
0
        public StampSet Clone()
        {
            StampSet stampSet = new StampSet();

            stampSet.AddRange(this);
            return(stampSet);
        }
Пример #2
0
 public bool Equals(StampSet otherStampSet)
 {
     if (otherStampSet == null)
     {
         throw new ArgumentNullException("otherStampSet");
     }
     return(base.SetEquals(otherStampSet));
 }