3 writes to _array
PresentationCore (3)
MS\Internal\Shaping\UshortList2.cs (3)
165_array = array; 170_array = new ushort[capacity]; 235_array = newArray;
16 references to _array
PresentationCore (16)
MS\Internal\Shaping\UshortList2.cs (16)
176get { return _array[index]; } 177set { _array[index] = value; } 182get { return _array.Length; } 187return _array; 196_array, 200((index + count) <= _array.Length ? count : _array.Length) * sizeof(ushort) 210if (newLength > _array.Length) 215int extra = newLength - _array.Length; 216int newArraySize = _array.Length + ((extra - 1) / _leap + 1) * _leap; 222Buffer.BlockCopy(_array, 0, newArray, 0, index * sizeof(ushort)); 227_array, 242_array, 244_array, 255_array, 257_array,