Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_professional thread: URGENT: HashTable namespace missing????


Message #1 by Julian Voelcker <asp@t...> on Tue, 04 Feb 2003 15:18:53 GMT
In your original mail, though, the error message you reported was: "The type
or namespace name 'HashTable' could not be found (are you missing a using
directive or an assembly reference?)". HashTable is not part of the
System.Collections namespace, Hashtable is. Double check your code.

-----Original Message-----
From: Julian Voelcker [mailto:asp@t...]
Sent: 04 February 2003 23:09
To: ASPX_Professional
Subject: [aspx_professional] Re: URGENT: HashTable namespace missing????


On Tue, 4 Feb 2003 17:11:54 -0000, Wim Hollebrandse wrote:
> It is in fact the other way around. The class is Hashtable.
> 
> So you should be using:
> 
> Hashtable hashSelect = new Hashtable();

That is what I am using.

Steve had suggested..

> HashTable hashSelect = new HashTable();
> 
> instead of 
> 
> HashTable hashSelect = new Hashtable();

Both of which are wrong, hence my explanation:-

> I haven't tried your suggestion because it is down to the case of 
> Hashtable - it's a lowercase t for the table, not capital T, which is 
> unusual.
>

  Return to Index