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)
70
this
[
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)
152
if (this
[
i] == item)
228
array[arrayIndex + i] = this
[
i];
236
yield return this
[
i];
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealPoints.cs (4)
87
return new Point(_xArray
[
index], _yArray
[
index]);
106
if (_xArray
[
i] == item.X && _yArray
[
i] == item.Y)