5 writes to _length
PresentationCore (5)
MS\Internal\Shaping\UshortList2.cs (5)
41_length = arrayLength; 64set { _length = value; } 82_length = length; 96_length += count; 111_length -= count;
9 references to _length
PresentationCore (9)
MS\Internal\Shaping\UshortList2.cs (9)
48Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 53Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 63get { return _length; } 92Invariant.Assert(index <= _length && index >= 0, "Index out of range"); 95_storage.Insert(_index + index, count, _index + _length); 107Invariant.Assert(index < _length && index >= 0, "Index out of range"); 108Invariant.Assert(count > 0 && (index + count) <= _length, "Invalid argument"); 110_storage.Remove(_index + index, count, _index + _length); 121return _storage.GetSubsetCopy(_index,_length);