10 references to Next
System (6)
compmod\system\collections\generic\linkedlist.cs (1)
161
current = current.
Next
; // use Next the instead of "next", otherwise it will loop forever
net\System\Net\_PrefixLookup.cs (1)
144
pairNode != null; pairNode = pairNode.
Next
)
net\System\Net\_TimerThread.cs (2)
676
LinkedListNode<WeakReference> next = node.
Next
;
691
node = node.
Next
;
regex\system\text\regularexpressions\Regex.cs (2)
1331
for (LinkedListNode<CachedCodeEntry> current = livecode.First; current != null; current = current.
Next
) {
1352
for (LinkedListNode<CachedCodeEntry> current = livecode.First; current != null; current = current.
Next
) {
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
318
for (LinkedListNode<CacheInfo> info = this.list.First; info != null; info = info.
Next
) {
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
1828
if (this._current.
Next
== null)
1842
if (!this.IsExpired(this._current.
Next
.Value, now))
1846
this._current = this._current.
Next
;