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)
62InsertItem(_count, item); 124get { return _count; } 181return InsertItem(_count, ConvertValue(value)); 248else if (_count == _items.Length) 250FamilyTypeface[] items = new FamilyTypeface[_count * 2]; 253for (int i = index; i < _count; ++i) 257else if (index < _count) 259for (int i = _count - 1; i >= index; --i) 275FamilyTypeface[] items = new FamilyTypeface[_count]; 320for (int i = index; i < _count; ++i) 324_items[_count] = null; 330if (_count != 0 && item != null) 332for (int i = 0; i < _count; ++i) 344ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count); 378if (_count > array.Length - index) 381if (_count != 0) 384Array.Copy(_items, 0, array, index, _count);