4 writes to current
mscorlib (4)
system\collections\generic\dictionary.cs (4)
713current = new KeyValuePair<TKey, TValue>(); 725current = new KeyValuePair<TKey, TValue>(dictionary.entries[index].key, dictionary.entries[index].value); 733current = new KeyValuePair<TKey, TValue>(); 764current = new KeyValuePair<TKey, TValue>();
9 references to current
mscorlib (9)
system\collections\generic\dictionary.cs (9)
738get { return current; } 751return new System.Collections.DictionaryEntry(current.Key, current.Value); 753return new KeyValuePair<TKey, TValue>(current.Key, current.Value); 773return new DictionaryEntry(current.Key, current.Value); 783return current.Key; 793return current.Value;