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)
41
return
_storage
[_index + index];
46
_storage
[_index + index] = value;
72
Invariant.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);
108
return
_storage
.ToArray();
113
return
_storage
.GetSubsetCopy(_index,_length);