I have a Dictionary
object in VBScript. How can I copy all the objects contained in it to a new Dictionary
, i.e. create a clone/duplicate of the di
Take a look at the accepted answer in VBScript: How to utiliize a dictionary object returned from a function?. Could be a solution if a reference is all that is being looked for.
Edit As per Ekkehard.Horner's comment, I understand now that this is not cloning, but may help others who are only looking for a reference to the original object.