4 writes to _current
System.Collections.Specialized (4)
System\Collections\Specialized\ListDictionary.cs (4)
275
_current
= null;
330
_current
= _list.head;
335
_current
= _current.next;
347
_current
= null;
10 references to _current
System.Collections.Specialized (10)
System\Collections\Specialized\ListDictionary.cs (10)
290
if (
_current
== null)
294
return new DictionaryEntry(
_current
.key,
_current
.value);
302
if (
_current
== null)
306
return
_current
.key;
314
if (
_current
== null)
318
return
_current
.value;
333
else if (
_current
!= null)
335
_current =
_current
.next;
337
return (
_current
!= null);