Implemented interface member:
property
this
System.Collections.Generic.IList<T>.this[System.Int32]
5 writes to
PresentationCore (5)
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (1)
70this[i] = realValues[i];
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealPoints.cs (4)
60_xArray[i] = pointValues[i].X; 61_yArray[i] = pointValues[i].Y; 93_xArray[index] = value.X; 94_yArray[index] = value.Y;
7 references to
PresentationCore (7)
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (3)
152if (this[i] == item) 228array[arrayIndex + i] = this[i]; 236yield return this[i];
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealPoints.cs (4)
87return new Point(_xArray[index], _yArray[index]); 106if (_xArray[i] == item.X && _yArray[i] == item.Y)