0
我有一些像這樣的代碼:如何在VB.net中的For Each期間訪問收集鍵?
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
我怎樣才能在循環中同時獲得的價值和關鍵?也許還有另一個課程讓這更容易?
,我發現了錯誤,「KeyValuePair沒有定義」。有任何想法嗎? – DisgruntledGoat 2009-08-11 20:17:20
'Imports System.Collections.Generic' – 2009-08-11 20:22:33
好趕上,我更新了答案 – 2009-08-11 20:24:55