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)
42
return
_storage
[_index + index];
47
_storage
[_index + index] = value;
73
Invariant.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);
109
return
_storage
.ToArray();
114
return
_storage
.GetSubsetCopy(_index,_length);