4 writes to current
mscorlib (4)
system\collections\listdictionaryinternal.cs (4)
388this.current = null; 405current = list.head; 410current = current.next; 421current = null;
6 references to current
mscorlib (6)
system\collections\listdictionaryinternal.cs (6)
393if (current == null) { 396return isKeys ? current.key : current.value; 409if( current != null) { 410current = current.next; 413return (current != null);