22

System.Collections.Generic.Dictionary是否可以在一个语句中使用字符串键/值对创建和初始化对象?

我正在考虑字符串数组的构造函数..

例如

Private mStringArray As String() = {"String1", "String2", "etc"}

如果这被证明是一种语法糖,我更喜欢我可以在 .Net 2.0 (Visual Studio 2005) 和 Visual Basic 中使用的答案——尽管我很好奇它是否可能如此不要让它让你失望;o)

4

4 回答 4

78

像这样:

Dim myDic As New Dictionary(Of String, String) From {{"1", "One"}, {"2", "Two"}}
于 2010-07-07T14:16:40.367 回答
7

我认为在 VB.NET 2 中没有开箱即用的方法,但是您可以扩展通用字典以使其按您希望的方式工作。

下面的控制台应用程序说明了这一点:

Imports System.Collections.Generic

Module Module1

    Sub Main()

        Dim items As New FancyDictionary(Of Integer, String)(New Object(,) {{1, "First Item"}, {2, "Second Item"}, {3, "Last Item"}})
        Dim enumerator As FancyDictionary(Of Integer, String).Enumerator = items.GetEnumerator

        While enumerator.MoveNext
            Console.WriteLine(String.Format("{0} : {1}", enumerator.Current.Key, enumerator.Current.Value))
        End While

        Console.Read()

    End Sub

    Public Class FancyDictionary(Of TKey, TValue)
        Inherits Dictionary(Of TKey, TValue)

        Public Sub New(ByVal InitialValues(,) As Object)

            For i As Integer = 0 To InitialValues.GetLength(0) - 1

                Me.Add(InitialValues(i, 0), InitialValues(i, 1))

            Next

        End Sub

    End Class

End Module
于 2008-11-26T20:43:19.637 回答
5

试试这个语法:

Dictionary<string, double> dict = new Dictionary<string, double>()
{
  { "pi", 3.14},
  { "e", 2.71 }
 };

但这可能需要 C# 3 (.NET 3.5)

于 2008-11-25T19:25:52.913 回答
0

我知道这是一个旧帖子,但这个问题经常出现。如果

这是一种在一个语句中声明和初始化字典的方法:

Private __sampleDictionary As New Dictionary(Of Integer, String) From
{{1, "This is a string value"}, {2, "Another value"}}
于 2012-02-17T14:23:10.550 回答