We can init a HashTable object using the below syntax.
var listTinhThanh = new System.Collections.Hashtable()
{
{ "key", someObject }
};
I want to use the code in such a manner of:
var listTinhThanh = new System.Collections.Hashtable()
{
{ Key:"key", Value:someObject }
};
But that DOESN'T work. Do you have any work-around?
{ { "blah", 1 } }is really just sugar for.Add("blah", 1). And about HashTable, are you running .NET 1.0? – Skurmedel Jan 24 '11 at 11:10named index collection. Not sure the differences between the two (Hashtable vs Dictionary) – Nam G. VU Jan 24 '11 at 11:24