I had no idea in C# 3.0 Hashtable table = new Hashtable {{1, 1}, {2, 2}}; would compile.
Anyway, poor man's implementation:
Meh, you could extend the Hashtable class:
class MyHashTable : System.Collections.Hashtable
{
public MyHashTable(string [,] values)
{
for (int i = 0; i < (values.Length)/2; i++)
{
this.Add(values[i,0], values[i,1]);
}
}
}
And then from a Console App:
class Program
{
static void Main(string[] args)
{
string[,] initialize = { { "building", "A-51" }, { "apartment", "210" }, {"wow", "nerf Druids"}};
MyHashTable myhashTable = new MyHashTable(initialize);
Console.WriteLine(myhashTable["building"].ToString());
Console.WriteLine(myhashTable["apartment"].ToString());
Console.WriteLine(myhashTable["wow"].ToString());
Console.ReadKey();
}
}
will result in:
A-51
210
nerf Druids
this was done quick so it may bomb in certain situations but then again..