I thought that arrays and hash tables could be strictly typed under 2.0
instead of just being objects, but I can't find any documentation.
I want to have the values in a hash table designated as a string type,
so that I don't have to keep doing something like:
strSomething = CStr(hashtable( Key))
I'd rather have
strSomething = hashtable(Key)
Do the hashtables support this? If they do, what is the syntax?
Thanks,
Shane
instead of just being objects, but I can't find any documentation.
I want to have the values in a hash table designated as a string type,
so that I don't have to keep doing something like:
strSomething = CStr(hashtable( Key))
I'd rather have
strSomething = hashtable(Key)
Do the hashtables support this? If they do, what is the syntax?
Thanks,
Shane
Comment