When you create a VB 6 class and then create many instantiations of this class during run-time - is the code part of the class shared among all the instantiations or is it re-created seperately each time?
(I ask because I am debating whether to use this class as a base data type for say, a linked-list or an array (which may have many elements) and wanted to know how to approach it.)
(I ask because I am debating whether to use this class as a base data type for say, a linked-list or an array (which may have many elements) and wanted to know how to approach it.)