What Are Collections Implemented As In VB6?
Posted
by Tom Tresansky
on Stack Overflow
See other posts from Stack Overflow
or by Tom Tresansky
Published on 2010-03-30T20:36:31Z
Indexed on
2010/04/01
0:03 UTC
Read the original article
Hit count: 141
vb6
|visual-basic
So a collection in VB6 keeps track of a key for each object, and you can look up the object by its key.
Does that mean collections are implemented as some sort of hashtable under the hood? I realize you can have multiple items with the same key in a collection, hence the SOME SORT.
Anybody know what type data structure a VB6 collection is supposed to represent?
© Stack Overflow or respective owner