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)
90
return
_cachedIndex
;
97
if (
_cachedIndex
>= 0)
213
int moveBy = (index -
_cachedIndex
);
225
if (index ==
_cachedIndex
)
381
bool isCacheCurrent = (version == _cachedVersion) && (
_cachedIndex
>= 0);