List Of Snippets With Tag: "collection"

Copy Collection to Another Collection in Algorithms

DIM cSource AS Collection
DIM cDest AS NEW Collection
DIM vVal AS VARIANT

FOR EACH vVal IN cSource
 cDest[cSource.Key] = vVal
NEXT

Posted: 2008.09.05 23:16 | By: silent | 1 comments

1