3 writes to _storage
PresentationCore (3)
MS\Internal\Shaping\UshortList2.cs (3)
21_storage = new UshortArray(capacity, leap); 27_storage = new UshortArray(array); 32_storage = new UnsafeUshortArray(unsafeArray, arrayLength);
7 references to _storage
PresentationCore (7)
MS\Internal\Shaping\UshortList2.cs (7)
41return _storage[_index + index]; 46_storage[_index + index] = value; 72Invariant.Assert(length >= 0 && (index + length) <= _storage.Length, "List out of storage"); 87_storage.Insert(_index + index, count, _index + _length); 102_storage.Remove(_index + index, count, _index + _length); 108return _storage.ToArray(); 113return _storage.GetSubsetCopy(_index,_length);