3 writes to _cachedIndex
PresentationFramework (3)
MS\Internal\Data\IndexedEnumerable.cs (3)
366_cachedIndex = index; 436_cachedIndex = -1; // will force at least one MoveNext 461_cachedIndex = -1;
5 references to _cachedIndex
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (5)
90return _cachedIndex; 97if (_cachedIndex >= 0) 213int moveBy = (index - _cachedIndex); 225if (index == _cachedIndex) 381bool isCacheCurrent = (version == _cachedVersion) && (_cachedIndex >= 0);