Implemented interface members:
property
Count
System.Collections.Generic.ICollection<T>.Count
property
Count
System.Collections.Generic.IReadOnlyCollection<T>.Count
property
Count
System.Collections.ICollection.Count
24 references to Count
System (12)
compmod\system\collections\generic\linkedlist.cs (6)
183
if (array.Length - index <
Count
) {
293
T[] array = new T[
Count
];
414
if (array.Length - index <
Count
) {
509
if( index == 0 || (index == list.
Count
+ 1)) {
523
index = list.
Count
+ 1;
579
if( index == list.
Count
+ 1) { // end of enumeration
net\System\Net\_PrefixLookup.cs (2)
113
while (lruList.
Count
> capacity)
127
if (lookupKey == null || lookupKey.Length == 0 || lruList.
Count
== 0)
net\System\Net\_TimerThread.cs (1)
661
if (s_NewQueues.
Count
> 0) {
regex\system\text\regularexpressions\Regex.cs (3)
498
if (livecode.
Count
> cacheSize) {
500
while (livecode.
Count
> cacheSize)
1364
if (livecode.
Count
> cacheSize)
System.Data.DataSetExtensions (3)
System\Data\SortExpressionBuilder.cs (3)
131
Debug.Assert(_selectors.
Count
== _comparers.
Count
); //weak now that we have two dimensions
132
return _selectors.
Count
;
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
336
if (this.list.
Count
> this.maxCacheSize) {
System.IdentityModel (2)
System\IdentityModel\Tokens\MruSessionSecurityTokenCache.cs (2)
203
if (this.mruList.
Count
> 1 && !object.ReferenceEquals(this.mruList.First, entry.Node))
291
if (this.mruList.
Count
> 1 && !object.ReferenceEquals(this.mruList.First, entry.Node))
System.ServiceModel.Internals (2)
System\Runtime\DuplicateDetector.cs (1)
45
Fx.Assert(this.items.Count == this.fifoList.
Count
, "The items and fifoList must be synchronized.");
System\Runtime\MruCache.cs (1)
154
if (found && this.mruList.
Count
> 1
System.Web (1)
Util\SubscriptionQueue.cs (1)
25
get { return (_list == null || _list.
Count
== 0); }
System.Web.DataVisualization (3)
WebForm\General\ChartHttpHandler.cs (3)
1790
this._list.AddLast(new RingItem(_list.
Count
));
1832
this._list.AddLast(new RingItem(_list.
Count
));
1844
this._list.AddAfter(this._current, new RingItem(_list.
Count
));