Collections object question

  • Thread starter Thread starter Terrell Miller
  • Start date Start date
T

Terrell Miller

quick question I can't find the answer for:

is there an upper limit to teh number of objects you can
add in a Collection? I'm doing one that seems to stop at
256 items, wondering if that's a hard limit or just
something about the Watch window.

TIA,

Terrell
 
Terrell said:
quick question I can't find the answer for:

is there an upper limit to teh number of objects you can
add in a Collection? I'm doing one that seems to stop at
256 items, wondering if that's a hard limit or just
something about the Watch window.

I don't know what the limit on the number of items in a
collection is, but whatever it is, it's a lot more than 256.
 
is there an upper limit to teh number of objects you can
add in a Collection?

It's limited to amount of memory and resources on your system, if I
remember correctly.

-- Dev
 
It is way more than that.

However, if you have hundreds or thousands of members, the internal indexing
can get very slow, in my experience. So do not assume that you can use a
collection just like an indexed table, ie. instant response, even with a
gazillion entries..

HTH,
TC
 
Back
Top