4 writes to _count
PresentationCore (4)
System\Windows\Media\FamilyMapCollection.cs (4)
36_count = 0; 300_count++; 330_count = 0; 341_count--;
22 references to _count
PresentationCore (22)
System\Windows\Media\FamilyMapCollection.cs (22)
46return new Enumerator(_items, _count); 51return new Enumerator(_items, _count); 63InsertItem(_count, item); 92if (_count > array.Length - index) 95if (_count != 0) 96Array.Copy(_items, 0, array, index, _count); 113if (_count > array.Length - index) 116if (_count != 0) 117Array.Copy(_items, 0, array, index, _count); 150get { return _count; } 208return InsertItem(_count, ConvertValue(value)); 267if (_count + 1 >= ushort.MaxValue) 283else if (_count == _items.Length) 285FontFamilyMap[] items = new FontFamilyMap[_count * 2]; 288for (int i = index; i < _count; ++i) 292else if (index < _count) 294for (int i = _count - 1; i >= index; --i) 342for (int i = index; i < _count; ++i) 346_items[_count] = null; 351if (_count != 0 && item != null) 353for (int i = 0; i < _count; ++i) 365ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count);