We have vb6.0 code i am converting in to vb.net code with version 2008.
In vb6.0 code we use Scripting.Dictionary object.
when i tried to replace hash table with Scripting.Dictionary
what is the difference between hash table and Scriprint.Dictionary object
Add method,Item method
for example odicCoverage used as hash table
odicCoverage.Add(intCount, oCoverageData)
odicCoverage.Item(0)
for example odicCoverage used as Scriprint.Dictionary
odicCoverage.Add(intCount, oCoverageData)
odicCoverage.Item(0)
any help is appreciated.
In vb6.0 code we use Scripting.Dictionary object.
when i tried to replace hash table with Scripting.Dictionary
what is the difference between hash table and Scriprint.Dictionary object
Add method,Item method
for example odicCoverage used as hash table
odicCoverage.Add(intCount, oCoverageData)
odicCoverage.Item(0)
for example odicCoverage used as Scriprint.Dictionary
odicCoverage.Add(intCount, oCoverageData)
odicCoverage.Item(0)
any help is appreciated.