5 writes to _count
PresentationCore (5)
System\Windows\Media\FamilyTypefaceCollection.cs (5)
26
_count
= 0;
36
_count
= innerList.Count;
266
_count
++;
311
_count
= 0;
320
_count
--;
17 references to _count
PresentationCore (17)
System\Windows\Media\FamilyTypefaceCollection.cs (17)
63
InsertItem(
_count
, item);
125
get { return
_count
; }
182
return InsertItem(
_count
, ConvertValue(value));
249
else if (
_count
== _items.Length)
251
FamilyTypeface[] items = new FamilyTypeface[
_count
* 2];
254
for (int i = index; i <
_count
; ++i)
258
else if (index <
_count
)
260
for (int i =
_count
- 1; i >= index; --i)
276
FamilyTypeface[] items = new FamilyTypeface[
_count
];
321
for (int i = index; i <
_count
; ++i)
325
_items[
_count
] = null;
331
if (
_count
!= 0 && item != null)
333
for (int i = 0; i <
_count
; ++i)
345
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_count
);
379
if (
_count
> array.Length - index)
382
if (
_count
!= 0)
385
Array.Copy(_items, 0, array, index,
_count
);