hello,
i have a hashTable of which values are needed to be reset. i've tried using the DictionaryEntry to iterate through each element in the hashTable and setting their values to 0, but it seems that it doesn't work.
afer the code above is executed, the value of each element in hashQty is not 0.
Thank you
i have a hashTable of which values are needed to be reset. i've tried using the DictionaryEntry to iterate through each element in the hashTable and setting their values to 0, but it seems that it doesn't work.
Code:
For Each item As DictionaryEntry In hashQty
item.Value = 0
Next
Thank you
Comment