3 writes to _cachedIndex
PresentationFramework (3)
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (3)
387_cachedIndex = index; 457_cachedIndex = -1; // will force at least one MoveNext 485_cachedIndex = -1;
5 references to _cachedIndex
PresentationFramework (5)
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (5)
103return _cachedIndex; 110if (_cachedIndex >= 0) 233int moveBy = (index - _cachedIndex); 245if (index == _cachedIndex) 402bool isCacheCurrent = (version == _cachedVersion) && (_cachedIndex >= 0);