Re: Arraylist.remove problem?? Please help.




Extremest wrote:
it is running pretty good now I have put in the insert and delete setup
or the db into it...obvioulsy it slowed it down quite a bit but is
still running faster now then it was before with out them. So thank
you very much. Will see what i can do with the group thing.

It probably doesn't help that in my haste I wrote:

public void GetEnumerator()
{
return this._list.GetEnumerator();
}

when I should have written:

public IEnumerator GetEnumerator()
{
return this._list.GetEnumerator();
}

.


Loading