3 writes to _storage
PresentationCore (3)
MS\Internal\Shaping\UshortList2.cs (3)
22_storage = new UshortArray(capacity, leap); 28_storage = new UshortArray(array); 33_storage = new UnsafeUshortArray(unsafeArray, arrayLength);
7 references to _storage
PresentationCore (7)
MS\Internal\Shaping\UshortList2.cs (7)
42return _storage[_index + index]; 47_storage[_index + index] = value; 73Invariant.Assert(length >= 0 && (index + length) <= _storage.Length, "List out of storage"); 88_storage.Insert(_index + index, count, _index + _length); 103_storage.Remove(_index + index, count, _index + _length); 109return _storage.ToArray(); 114return _storage.GetSubsetCopy(_index,_length);