3 writes to _storage
PresentationCore (3)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (3)
35_storage = new UshortArray(capacity, leap); 41_storage = new UshortArray(array); 46_storage = new UnsafeUshortArray(unsafeArray, arrayLength);
7 references to _storage
PresentationCore (7)
Core\CSharp\MS\Internal\Shaping\UshortList2.cs (7)
61return _storage[_index + index]; 67_storage[_index + index] = value; 98Invariant.Assert(length >= 0 && (index + length) <= _storage.Length, "List out of storage"); 113_storage.Insert(_index + index, count, _index + _length); 128_storage.Remove(_index + index, count, _index + _length); 134return _storage.ToArray(); 139return _storage.GetSubsetCopy(_index,_length);