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
16 references to Count
System.Collections (13)
System\Collections\Generic\OrderedDictionary.cs (13)
593
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0 or greater than or equal to <see cref="
Count
"/>.</exception>
722
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0 or greater than <see cref="
Count
"/>.</exception>
769
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0 or greater than or equal to <see cref="
Count
"/>.</exception>
797
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0 or greater than or equal to <see cref="
Count
"/>.</exception>
816
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0 or greater than or equal to <see cref="
Count
"/>.</exception>
900
/// <exception cref="ArgumentOutOfRangeException"><paramref name="capacity"/> is less than <see cref="
Count
"/>.</exception>
903
ThrowIfLessThan(capacity,
Count
);
1165
Count
== 0 ? EnumerableHelpers.GetEmptyEnumerator<KeyValuePair<TKey, TValue>>() :
1339
return
Count
- 1;
1481
public int Count => _dictionary.
Count
;
1543
if (array.Length - index < _dictionary.
Count
)
1676
public int Count => _dictionary.
Count
;
1852
if (array.Length - index < _dictionary.
Count
)
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (2)
177
if (currentDict.
Count
!= otherDict.
Count
)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
89
public int Count => Dictionary.
Count
;