up vote 10 down vote favorite
1
share [g+] share [fb]

Is it possible to create and initialise a System.Collections.Generic.Dictionary object with String key/value pairs in one statement?

I'm thinking along the lines of the constructor for an array of Strings..

e.g.

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

In case this is turns out to be a syntactic sugar kind of thing, I'd prefer an answer that I can use in .Net 2.0 (Visual Studio 2005), and Visual Basic - though I'm curious if it's possible at all so don't let that put you off ;o)

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

I don't think there is a way to do this out of the box in VB.NET 2, however you can extend the generic dictionary to make it work the way you want it to.

The console app below illustrates this:

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
link|improve this answer
feedback

Like this:

Dim myDic As New Dictionary(Of String, String) From {{"1", "One"}, {"2", "Two"}}
link|improve this answer
This is the answer I was looking for. :) – subkamran Jul 23 '10 at 16:19
3  
Available as of VB.NET 10 – Mauricio Scheffer Oct 12 '10 at 14:36
feedback

Try this syntax:

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

But that may require C# 3 (.NET 3.5)

link|improve this answer
It does require C# 3, but it doesn't require .NET 3.5. – Jon Skeet Nov 25 '08 at 20:25
feedback

Well, I think in C# 3.0 this works:

private Dictionary mDictionary = new Dictionary { {"key", "value"} };

but it looks like you want VB, not sure if there is something similar.

Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.