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)
63InsertItem(_count, item); 125get { return _count; } 182return InsertItem(_count, ConvertValue(value)); 249else if (_count == _items.Length) 251FamilyTypeface[] items = new FamilyTypeface[_count * 2]; 254for (int i = index; i < _count; ++i) 258else if (index < _count) 260for (int i = _count - 1; i >= index; --i) 276FamilyTypeface[] items = new FamilyTypeface[_count]; 321for (int i = index; i < _count; ++i) 325_items[_count] = null; 331if (_count != 0 && item != null) 333for (int i = 0; i < _count; ++i) 345ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count); 379if (_count > array.Length - index) 382if (_count != 0) 385Array.Copy(_items, 0, array, index, _count);