4 writes to current
System (4)
compmod\system\collections\specialized\listdictionary.cs (4)
292current = null; 333current = list.head; 337current = current.next; 347current = null;
10 references to current
System (10)
compmod\system\collections\specialized\listdictionary.cs (10)
303if (current == null) { 306return new DictionaryEntry(current.key, current.value); 312if (current == null) { 315return current.key; 321if (current == null) { 324return current.value; 336else if (current != null) { 337current = current.next; 339return (current != null);