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)