P
parez
Hi all,
I want to use DictionaryBase as base class. The search performace
matters lot.
I have used a hashtable in a similar situation.
This class DictionaryBase has a innerhash table so i guess the
performace should be the same.
Question.
Would there be any perforamce difference for searching for the two
classes below.
Public Class LookUpCollection
Inherits DictionaryBase
End Class
Public Class LookUpCollection
private ht As Hashtable
end class
Thanks all in advance.
I want to use DictionaryBase as base class. The search performace
matters lot.
I have used a hashtable in a similar situation.
This class DictionaryBase has a innerhash table so i guess the
performace should be the same.
Question.
Would there be any perforamce difference for searching for the two
classes below.
Public Class LookUpCollection
Inherits DictionaryBase
End Class
Public Class LookUpCollection
private ht As Hashtable
end class
Thanks all in advance.