5 writes to _length
PresentationCore (5)
MS\Internal\Shaping\UshortList2.cs (5)
34_length = arrayLength; 57set { _length = value; } 75_length = length; 89_length += count; 104_length -= count;
9 references to _length
PresentationCore (9)
MS\Internal\Shaping\UshortList2.cs (9)
41Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 46Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 56get { return _length; } 85Invariant.Assert(index <= _length && index >= 0, "Index out of range"); 88_storage.Insert(_index + index, count, _index + _length); 100Invariant.Assert(index < _length && index >= 0, "Index out of range"); 101Invariant.Assert(count > 0 && (index + count) <= _length, "Invalid argument"); 103_storage.Remove(_index + index, count, _index + _length); 114return _storage.GetSubsetCopy(_index,_length);