21 references to First
System (12)
compmod\system\collections\generic\linkedlist.cs (2)
583node = list.First; 590if( node == list.First) {
net\System\Net\_PrefixLookup.cs (5)
101if (lruList.First != null && lruList.First.Value.prefix.Equals(prefix)) 104lruList.First.Value.value = value; 143for (LinkedListNode<PrefixValuePair> pairNode = lruList.First; 163if (mostSpecificMatch != null && mostSpecificMatch != lruList.First)
net\System\Net\_TimerThread.cs (3)
663for (LinkedListNode<WeakReference> node = s_NewQueues.First; node != null; node = s_NewQueues.First) { 673for (LinkedListNode<WeakReference> node = s_Queues.First; node != null; /* node = node.Next must be done in the body */) {
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.IdentityModel (2)
System\IdentityModel\Tokens\MruSessionSecurityTokenCache.cs (2)
203if (this.mruList.Count > 1 && !object.ReferenceEquals(this.mruList.First, entry.Node)) 291if (this.mruList.Count > 1 && !object.ReferenceEquals(this.mruList.First, entry.Node))
System.ServiceModel.Internals (1)
System\Runtime\MruCache.cs (1)
155&& !object.ReferenceEquals(this.mruList.First, entry.node))
System.Web (2)
Util\SubscriptionQueue.cs (2)
52if (_list != null && _list.First != null) { 53LinkedListNode<T> theNode = _list.First;
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
1791this._current = this._list.First; 1830if (!this.IsExpired(this._list.First.Value, now)) 1837this._current = this._list.First;