Dictionary looping perfomrance comparison
Posted
by Shimmy
on Stack Overflow
See other posts from Stack Overflow
or by Shimmy
Published on 2010-04-18T23:09:00Z
Indexed on
2010/04/18
23:13 UTC
Read the original article
Hit count: 257
I have the following 3 options, I believe there are more:
For Each entry In Me
Next
For i = 0 To Count
Dim key = Keys(0)
Dim value = Values(0)
Next
For Each Key In Keys
Dim value = Me(Key)
Next
© Stack Overflow or respective owner