3 writes to _cachedIndex
PresentationFramework (3)
MS\Internal\Data\IndexedEnumerable.cs (3)
370_cachedIndex = index; 440_cachedIndex = -1; // will force at least one MoveNext 468_cachedIndex = -1;
5 references to _cachedIndex
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (5)
91return _cachedIndex; 98if (_cachedIndex >= 0) 217int moveBy = (index - _cachedIndex); 229if (index == _cachedIndex) 385bool isCacheCurrent = (version == _cachedVersion) && (_cachedIndex >= 0);