0

我已经使用密钥进行了集合,但我无法检索此信息。这是我的代码:

Dim test As Collection = New Collection
test.Add("This is a test", "testkey")
MsgBox(test("testkey").ToString)

我在最后一行收到错误:

参数“索引”不是有效值。

怎么了?

4

1 回答 1

2

如果要存储键/值对,请使用Dictionary。这是你如何做到的。

Dim dictionary As New Dictionary(Of String, String)
dictionary.Add("testkey", "This is a test")
MsgBox(dictionary("testkey"))
于 2013-03-18T08:33:39.313 回答