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)
76InsertItem(_count, item); 138get { return _count; } 195return InsertItem(_count, ConvertValue(value)); 262else if (_count == _items.Length) 264FamilyTypeface[] items = new FamilyTypeface[_count * 2]; 267for (int i = index; i < _count; ++i) 271else if (index < _count) 273for (int i = _count - 1; i >= index; --i) 289FamilyTypeface[] items = new FamilyTypeface[_count]; 334for (int i = index; i < _count; ++i) 338_items[_count] = null; 344if (_count != 0 && item != null) 346for (int i = 0; i < _count; ++i) 358ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count); 392if (_count > array.Length - index) 395if (_count != 0) 398Array.Copy(_items, 0, array, index, _count);