3 writes to _cachedIndex
PresentationFramework (3)
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (3)
387
_cachedIndex
= index;
457
_cachedIndex
= -1; // will force at least one MoveNext
485
_cachedIndex
= -1;
5 references to _cachedIndex
PresentationFramework (5)
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (5)
103
return
_cachedIndex
;
110
if (
_cachedIndex
>= 0)
233
int moveBy = (index -
_cachedIndex
);
245
if (index ==
_cachedIndex
)
402
bool isCacheCurrent = (version == _cachedVersion) && (
_cachedIndex
>= 0);