visual studio .net general:
[quoted text, click to view] On Mon, 25 Jul 2005 12:06:56 GMT, Marty <xmarty99@hotmail.com> wrote:
>I installed the beta release of VS.NET 2005. I created a C# project and
>I was looking forward to have Hashtable that allow to have at least a
>base type for key/value pair. But it seem to be objects as the input type.
>
>Is it still objects? How could we set a specific type to avoid to cast
>when we extract something from the hashtable?
Sounds like you're looking at the wrong namespace. System.Collections
still contains the old object-based collections for backwards
compatibility. The generic collections you're looking for are in
System.Collections.Generic, and the generic hashtable class is now
simply called Dictionary.
--