5 writes to _count
PresentationCore (5)
System\Windows\Media\FamilyTypefaceCollection.cs (5)
39
_count
= 0;
49
_count
= innerList.Count;
279
_count
++;
324
_count
= 0;
333
_count
--;
17 references to _count
PresentationCore (17)
System\Windows\Media\FamilyTypefaceCollection.cs (17)
76
InsertItem(
_count
, item);
138
get { return
_count
; }
195
return InsertItem(
_count
, ConvertValue(value));
262
else if (
_count
== _items.Length)
264
FamilyTypeface[] items = new FamilyTypeface[
_count
* 2];
267
for (int i = index; i <
_count
; ++i)
271
else if (index <
_count
)
273
for (int i =
_count
- 1; i >= index; --i)
289
FamilyTypeface[] items = new FamilyTypeface[
_count
];
334
for (int i = index; i <
_count
; ++i)
338
_items[
_count
] = null;
344
if (
_count
!= 0 && item != null)
346
for (int i = 0; i <
_count
; ++i)
358
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_count
);
392
if (
_count
> array.Length - index)
395
if (
_count
!= 0)
398
Array.Copy(_items, 0, array, index,
_count
);