2 writes to _shortList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
111_shortList = null; // deprecate the short array from now on 254_shortList = new short[capacity];
12 references to _shortList
PresentationCore (12)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (12)
59if (_shortList != null) 61return _shortList.Length; 80if (_shortList != null) 82return ThousandthOfEmToReal(_shortList[index]); 93if (_shortList != null) 98_shortList[index] = sValue; 104_doubleList = new double[_shortList.Length]; 105for (int i = 0; i < _shortList.Length; i++) 107_doubleList[i] = ThousandthOfEmToReal(_shortList[i]); 141if (_shortList != null) 143for (int i = 0; i < _shortList.Length; i++) 145_shortList[i] = 0;