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)
61
return
_storage
[_index + index];
67
_storage
[_index + index] = value;
98
Invariant.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);
134
return
_storage
.ToArray();
139
return
_storage
.GetSubsetCopy(_index,_length);