我可以创建具有默认值的字典,而不是需要从过程中添加值吗?
我想做这样的事情:
Dim MyDict As New Dictionary(Of Int64, Boolean) { (1, True), (2, False) }
而不是这个:
Dim MyDict As New Dictionary(Of Int64, Boolean)
private sub blablabla
MyDict.Add(1, True)
MyDict.Add(2, False)
end sub