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?

link|improve this question

70% accept rate
1  
1) Why HashTable and not Dictionary? 2) Why do you prefer the second syntax? – CodeInChaos Jan 24 '11 at 11:06
Just one note: Why don't you use Dictionary<> instead of Hashtable? – Al Kepp Jan 24 '11 at 11:06
{ { "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:10
@CodeInChaos, Al Keep: I don't know indeed. I just google it and someone recommend me to use Hashtable when need a named index collection. Not sure the differences between the two (Hashtable vs Dictionary) – Nam G. VU Jan 24 '11 at 11:24
@ChodeInChaos: I prefer the second syntax since it is more reader-friendly to me. – Nam G. VU Jan 24 '11 at 11:26
show 1 more comment
feedback

1 Answer

up vote 5 down vote accepted

No, there isn't a workaround. Such syntax cannot possibly exist in C# because of the :. Also the first seems shorter to me, I wonder why you need the second.

This being said I would recommend you using a strongly typed Dictionary<TKey, TValue> instead of a Hashtable. The closest you could get is this:

var listTinhThanh = new[]
{ 
    new { Key = "key1", Value = someObject1 },
    new { Key = "key2", Value = someObject2 },
    new { Key = "key3", Value = someObject3 },
}.ToDictionary(x => x.Key, x => x.Value);
link|improve this answer
When tried this, I got the error The name 'Value' does not exist in the current context, The name 'Key' does not exist in the current context. – Nam G. VU Jan 24 '11 at 11:37
@Nam Gi VU, this is LINQ. You need to reference the System.Core assembly and include the System.Linq namespace. – Darin Dimitrov Jan 24 '11 at 12:08
feedback

Your Answer

 
or
required, but never shown

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