From: Peter Duniho on
Arne Vajh�j wrote:
> [...]
> It would not work in this case, because the type of the two values
> are different.

Well, sort of. The original code is pretty awful in conception, so IMHO
using the generic class should guide the OP toward a better design.

Even Dictionary<string, object> is better than using Hashtable, even if
it does still wind up requiring casting for some things.

Pete