the problem stats" copy instructor: initializes a copy of an IntSet given another IntSet as a parameter. The new IntSet is a copy of the IntSet parameter.
i need to copy my class using a constructor. IntSet is the class which is a class for setting up arrays as true or false and other array manipulation. i was having a little trouble figuring how to do this, but was thinking of doing something along these lines...
public IntSet(IntSet(b))
{
IntSet(b) = new IntSet(a);
}