예제 #1
0
 public void SymmetricExceptWith(CustomSet <T> other)
 {
     if (factory != other.factory)
     {
         throw new NotImplementedException();
     }
     hashCode = 0;
     set.SymmetricExceptWith(other.set);
 }