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)
91
return
_cachedIndex
;
98
if (
_cachedIndex
>= 0)
214
int moveBy = (index -
_cachedIndex
);
226
if (index ==
_cachedIndex
)
382
bool isCacheCurrent = (version == _cachedVersion) && (
_cachedIndex
>= 0);