有没有办法,我可以在VB.NET字典中创建它时插入值?我可以,但不想,为每个项目做dict.Add(int,“字符串”)。
基本上,我想用VB.NET做“How to insert values into C# Dictionary on instantiation?”。
var dictionary = new Dictionary<int,string> { {0,"string"},{1,"string2"},{2,"string3"} };
如果使用Visual Studio 2010或更高版本,您应该使用FROM关键字如下:
原文链接:https://www.f2er.com/vb/256404.htmlDim days = New Dictionary(Of Integer,String) From {{0,"string2"}}
参见:http://msdn.microsoft.com/en-us/library/dd293617(VS.100).aspx
如果你需要使用以前的Visual Studio版本,你需要频繁地这样做,你可以只继承Dictionary类并自己实现它。
它可能看起来像这样:
Public Class InitializableDictionary Inherits Dictionary(Of Int32,String) Public Sub New(ByVal args() As KeyValuePair(Of Int32,String)) MyBase.New() For Each kvp As KeyValuePair(Of Int32,String) In args Me.Add(kvp.Key,kvp.Value) Next End Sub End Class