VB.NET可以一个key对应多个value吗
时间: 2024-05-02 16:20:21 浏览: 189
关于map的 一个key对应多个value
在 VB.NET 中,可以通过使用集合(如 Dictionary 或 Hashtable)来实现一个 key 对应多个 value 的功能。具体实现方法取决于所选择的集合类型。例如,可以使用 Dictionary(Of TKey, List(Of TValue)) 来实现一个 key 对应多个 value 的字典。示例代码如下:
```
Dim dict As New Dictionary(Of String, List(Of Integer))()
' 添加 key-value 对
dict.Add("key1", New List(Of Integer)({1, 2, 3}))
dict.Add("key2", New List(Of Integer)({4, 5}))
' 获取 key 对应的 value
Dim values1 As List(Of Integer) = dict("key1")
Dim values2 As List(Of Integer) = dict("key2")
' 遍历所有 key-value 对
For Each kvp As KeyValuePair(Of String, List(Of Integer)) In dict
Dim key As String = kvp.Key
Dim values As List(Of Integer) = kvp.Value
' ...
Next
```
阅读全文