3 writes to _array
PresentationCore (3)
MS\Internal\Shaping\UshortList2.cs (3)
173_array = array; 178_array = new ushort[capacity]; 243_array = newArray;
16 references to _array
PresentationCore (16)
MS\Internal\Shaping\UshortList2.cs (16)
184get { return _array[index]; } 185set { _array[index] = value; } 190get { return _array.Length; } 195return _array; 204_array, 208((index + count) <= _array.Length ? count : _array.Length) * sizeof(ushort) 218if (newLength > _array.Length) 223int extra = newLength - _array.Length; 224int newArraySize = _array.Length + ((extra - 1) / _leap + 1) * _leap; 230Buffer.BlockCopy(_array, 0, newArray, 0, index * sizeof(ushort)); 235_array, 250_array, 252_array, 263_array, 265_array,