Implemented interface member:
property
Count
System.Collections.ICollection.Count
17 references to Count
System (4)
compmod\system\collections\specialized\ordereddictionary.cs (3)
269
if (index >
Count
|| index < 0) {
312
if (index >=
Count
|| index < 0) {
367
object[] serArray = new object[
Count
];
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1572
attrArray = new Attribute[attrDictionary.
Count
];
System.ServiceModel.Internals (5)
System\Runtime\Collections\OrderedDictionary.cs (5)
40
return this.privateDictionary.
Count
;
85
List<TKey> keys = new List<TKey>(this.privateDictionary.
Count
);
104
List<TValue> values = new List<TValue>(this.privateDictionary.
Count
);
173
if (array.Rank > 1 || arrayIndex >= array.Length || array.Length - arrayIndex < this.privateDictionary.
Count
)
321
return this.privateDictionary.
Count
;
System.Web (8)
UI\WebControls\DetailsView.cs (1)
3435
(_keyTable != null && _keyTable.
Count
> 0) ||
UI\WebControls\FormView.cs (1)
2897
(_keyTable != null && _keyTable.
Count
> 0) ||
UI\WebControls\ModelDataSourceView.cs (3)
1207
if (method.Parameters != null && method.Parameters.
Count
> 0) {
1208
parameterValues = new object[method.Parameters.
Count
];
1209
for (int i = 0; i < method.Parameters.
Count
; i++) {
UI\WebControls\ObjectDataSourceView.cs (3)
1662
if (method.Parameters != null && method.Parameters.
Count
> 0) {
1663
parameterValues = new object[method.Parameters.
Count
];
1664
for (int i = 0; i < method.Parameters.
Count
; i++) {