4 writes to _count
PresentationCore (4)
System\Windows\Media\FamilyMapCollection.cs (4)
24_count = 0; 288_count++; 318_count = 0; 329_count--;
22 references to _count
PresentationCore (22)
System\Windows\Media\FamilyMapCollection.cs (22)
34return new Enumerator(_items, _count); 39return new Enumerator(_items, _count); 51InsertItem(_count, item); 80if (_count > array.Length - index) 83if (_count != 0) 84Array.Copy(_items, 0, array, index, _count); 101if (_count > array.Length - index) 104if (_count != 0) 105Array.Copy(_items, 0, array, index, _count); 138get { return _count; } 196return InsertItem(_count, ConvertValue(value)); 255if (_count + 1 >= ushort.MaxValue) 271else if (_count == _items.Length) 273FontFamilyMap[] items = new FontFamilyMap[_count * 2]; 276for (int i = index; i < _count; ++i) 280else if (index < _count) 282for (int i = _count - 1; i >= index; --i) 330for (int i = index; i < _count; ++i) 334_items[_count] = null; 339if (_count != 0 && item != null) 341for (int i = 0; i < _count; ++i) 353ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _count);