迴圈遍歷字典並列印所有條目
字典中的每一對都是 KeyValuePair
的一個例項,其型別引數與 Dictionary 相同。當你使用 For Each
遍歷字典時,每次迭代都會給你一個儲存在字典中的鍵值對。
For Each kvp As KeyValuePair(Of String, String) In currentDictionary
Console.WriteLine("{0}: {1}", kvp.Key, kvp.Value)
Next
字典中的每一對都是 KeyValuePair
的一個例項,其型別引數與 Dictionary 相同。當你使用 For Each
遍歷字典時,每次迭代都會給你一個儲存在字典中的鍵值對。
For Each kvp As KeyValuePair(Of String, String) In currentDictionary
Console.WriteLine("{0}: {1}", kvp.Key, kvp.Value)
Next