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