5 writes to _length
PresentationCore (5)
MS\Internal\Shaping\UshortList2.cs (5)
33_length = arrayLength; 56set { _length = value; } 74_length = length; 88_length += count; 103_length -= count;
9 references to _length
PresentationCore (9)
MS\Internal\Shaping\UshortList2.cs (9)
40Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 45Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 55get { return _length; } 84Invariant.Assert(index <= _length && index >= 0, "Index out of range"); 87_storage.Insert(_index + index, count, _index + _length); 99Invariant.Assert(index < _length && index >= 0, "Index out of range"); 100Invariant.Assert(count > 0 && (index + count) <= _length, "Invalid argument"); 102_storage.Remove(_index + index, count, _index + _length); 113return _storage.GetSubsetCopy(_index,_length);