4 writes to _count
PresentationCore (4)
System\Windows\Media\FamilyMapCollection.cs (4)
23_count = 0; 287_count++; 317_count = 0; 328_count--;
22 references to _count
PresentationCore (22)
System\Windows\Media\FamilyMapCollection.cs (22)
33return new Enumerator(_items, _count); 38return new Enumerator(_items, _count); 50InsertItem(_count, item); 79if (_count > array.Length - index) 82if (_count != 0) 83Array.Copy(_items, 0, array, index, _count); 100if (_count > array.Length - index) 103if (_count != 0) 104Array.Copy(_items, 0, array, index, _count); 137get { return _count; } 195return InsertItem(_count, ConvertValue(value)); 254if (_count + 1 >= ushort.MaxValue) 270else if (_count == _items.Length) 272FontFamilyMap[] items = new FontFamilyMap[_count * 2]; 275for (int i = index; i < _count; ++i) 279else if (index < _count) 281for (int i = _count - 1; i >= index; --i) 329for (int i = index; i < _count; ++i) 333_items[_count] = null; 338if (_count != 0 && item != null) 340for (int i = 0; i < _count; ++i) 352ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count);