5 writes to _count
PresentationCore (5)
System\Windows\Media\FamilyTypefaceCollection.cs (5)
25
_count
= 0;
35
_count
= innerList.Count;
265
_count
++;
310
_count
= 0;
319
_count
--;
17 references to _count
PresentationCore (17)
System\Windows\Media\FamilyTypefaceCollection.cs (17)
62
InsertItem(
_count
, item);
124
get { return
_count
; }
181
return InsertItem(
_count
, ConvertValue(value));
248
else if (
_count
== _items.Length)
250
FamilyTypeface[] items = new FamilyTypeface[
_count
* 2];
253
for (int i = index; i <
_count
; ++i)
257
else if (index <
_count
)
259
for (int i =
_count
- 1; i >= index; --i)
275
FamilyTypeface[] items = new FamilyTypeface[
_count
];
320
for (int i = index; i <
_count
; ++i)
324
_items[
_count
] = null;
330
if (
_count
!= 0 && item != null)
332
for (int i = 0; i <
_count
; ++i)
344
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_count
);
378
if (
_count
> array.Length - index)
381
if (
_count
!= 0)
384
Array.Copy(_items, 0, array, index,
_count
);