vote up 0 vote down star

I have some code like this:

Dim col As Collection = New Collection
col.Add(value1, "key1")
col.Add(value2, "key2")

' later...
For Each item As String In col
    ' want to get valueX and keyX here; currently, "item" holds the value
Next

How can I get both the value and key within the loop? Maybe there is another class that makes this easier?

flag

1 Answer

vote up 3 vote down check

I'd use a generic dictionary...

 Imports System.Collections.Generic  'at top of file

    Dim col As New Dictionary(Of String, Of Object) 'or whatever type
    col.Add("key1", value1)
    col.Add("key2", value2)    

    For Each item as KeyValuePair(of String, Object) in col
           Console.WriteLine(item.key & ": " & item.value)
    Next
link|flag
I'm getting the error, "KeyValuePair is not defined". Any ideas? – DisgruntledGoat Aug 11 at 20:17
2  
Imports System.Collections.Generic – Pavel Minaev Aug 11 at 20:22
good catch, I updated the answer – Tim Hoolihan Aug 11 at 20:24

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.