2 writes to _shortList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
112_shortList = null; // deprecate the short array from now on 255_shortList = new short[capacity];
12 references to _shortList
PresentationCore (12)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (12)
60if (_shortList != null) 62return _shortList.Length; 81if (_shortList != null) 83return ThousandthOfEmToReal(_shortList[index]); 94if (_shortList != null) 99_shortList[index] = sValue; 105_doubleList = new double[_shortList.Length]; 106for (int i = 0; i < _shortList.Length; i++) 108_doubleList[i] = ThousandthOfEmToReal(_shortList[i]); 142if (_shortList != null) 144for (int i = 0; i < _shortList.Length; i++) 146_shortList[i] = 0;