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