Tagged Questions
2
votes
3answers
49 views
What do you exactly mean by HashMap's iterator is fail-fast and HashTable's enumerator isn't?
I was looking up the difference between the two classes and this point came up in a lot of the answers with this blog being the source:
...
1
vote
3answers
182 views
copy n k/v pairs from Hashtable
I have a hashtable with n number of records. I need to copy out the records between x and y and iterate through them.
How would I do this?
Example:
HT1.Count = 500;
HT2 = HT1[0] - HT1[100];
...