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