5 writes to _length
PresentationCore (5)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (5)
47_length = arrayLength; 82set { _length = value; } 100_length = length; 114_length += count; 129_length -= count;
9 references to _length
PresentationCore (9)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (9)
60Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 66Invariant.Assert(index >= 0 && index < _length, "Index out of range"); 80get { return _length; } 110Invariant.Assert(index <= _length && index >= 0, "Index out of range"); 113_storage.Insert(_index + index, count, _index + _length); 125Invariant.Assert(index < _length && index >= 0, "Index out of range"); 126Invariant.Assert(count > 0 && (index + count) <= _length, "Invalid argument"); 128_storage.Remove(_index + index, count, _index + _length); 139return _storage.GetSubsetCopy(_index,_length);