Implemented interface member:
property
Count
System.Collections.ICollection.Count
9 references to Count
System.Data.Common (9)
System\Data\Common\DataAdapter.cs (2)
189
protected bool HasTableMappings() => ((null != _tableMappings) && (0 < TableMappings.
Count
));
223
if ((null != from._tableMappings) && (0 < from.TableMappings.
Count
))
System\Data\Common\DataTableMappingCollection.cs (7)
95
return
Count
- 1;
152
if (0 <
Count
)
195
for (int i = 0; i <
Count
; ++i)
210
for (int i = 0; i <
Count
; ++i)
226
for (int i = 0; i <
Count
; ++i)
257
if ((index < 0) || (
Count
<= index))
287
Debug.Assert((null != _items) && (0 <= index) && (index <
Count
), "RemoveIndex, invalid");