internal Enumerator(LockFreeReaderHashtable <TKey, TValue> hashtable) { _sentinel = hashtable._entryInProcessOfWritingSentinel; _hashtableContentsToEnumerate = hashtable._hashtable; _index = 0; _current = default(TValue); }
public static Enumerator Get(LockFreeReaderHashtable <TKey, TValue> hashtable) { return(new Enumerator(hashtable)); }
internal Enumerator(LockFreeReaderHashtable <TKey, TValue> hashtable) { _hashtableContentsToEnumerate = hashtable._hashtable; _index = 0; _current = default(TValue); }