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
44 references to Count
System (43)
compmod\system\collections\generic\sorteddictionary.cs (1)
114
return _set.
Count
;
compmod\system\collections\generic\sortedset.cs (42)
122
if (baseSortedSet.
Count
== 0) {
131
Stack<Node> theirStack = new Stack<SortedSet<T>.Node>(2 * log2(baseSortedSet.
Count
) + 2);
132
Stack<Node> myStack = new Stack<SortedSet<T>.Node>(2 * log2(baseSortedSet.
Count
) + 2);
235
Stack<Node> stack = new Stack<Node>(2 * (int)(SortedSet<T>.log2(
Count
+ 1)));
582
public void CopyTo(T[] array) { CopyTo(array, 0,
Count
); }
584
public void CopyTo(T[] array, int index) { CopyTo(array, index,
Count
); }
635
if (array.Length - index <
Count
) {
927
if (set1.
Count
!= set2.
Count
)
967
T[] newArray = new T[
Count
];
1005
if (s != null && t == null && AreComparersEqual(this, s) && (s.
Count
> this.
Count
/ 2)) { //this actually hurts if N is much greater than M the /2 is arbitrary
1007
T[] merged = new T[s.
Count
+ this.
Count
];
1126
if (
Count
== 0)
1141
T[] merged = new T[this.
Count
];
1177
List<T> toSave = new List<T>(this.
Count
);
1244
if (this.
Count
== 0) {
1322
if (
Count
== 0)
1328
if (this.
Count
> asSorted.
Count
)
1336
return (result.uniqueCount ==
Count
&& result.unfoundCount >= 0);
1363
if (
Count
== 0)
1378
if (this.
Count
>= asSorted.
Count
)
1387
return (result.uniqueCount ==
Count
&& result.unfoundCount > 0);
1414
if (this.
Count
< asSorted.
Count
)
1438
if (
Count
== 0)
1455
if (asSorted.
Count
>= this.
Count
)
1471
return (result.uniqueCount <
Count
&& result.unfoundCount == 0);
1512
return (result.uniqueCount ==
Count
&& result.unfoundCount == 0);
1527
if (this.
Count
== 0)
1589
if (
Count
== 0) {
1602
int originalLastIndex =
Count
;
1643
List<T> matches = new List<T>(this.
Count
);
1983
List<T> toSave = new List<T>(this.
Count
);
2086
T[] items = new T[
Count
];
2178
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.
Count
+ 1));
2195
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(set.
Count
+ 1));
2244
stack = new Stack<SortedSet<T>.Node>(2 * (int)SortedSet<T>.log2(tree.
Count
+ 1));
System.Data.Entity (1)
System\Data\Mapping\Update\Internal\Graph.cs (1)
163
while (0 < rootsPriorityQueue.
Count
)