3 writes to _cachedIndex
PresentationFramework (3)
MS\Internal\Data\IndexedEnumerable.cs (3)
367_cachedIndex = index; 437_cachedIndex = -1; // will force at least one MoveNext 462_cachedIndex = -1;
5 references to _cachedIndex
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (5)
91return _cachedIndex; 98if (_cachedIndex >= 0) 214int moveBy = (index - _cachedIndex); 226if (index == _cachedIndex) 382bool isCacheCurrent = (version == _cachedVersion) && (_cachedIndex >= 0);