2 writes to _debugLastExceptionsNextIndex
Microsoft.Diagnostics.DataContractReader.Legacy (2)
DebugExtensions.cs (2)
52
_debugLastExceptionsNextIndex
= (_debugLastExceptionsNextIndex + 1) % LastExceptionRingSize;
80
_debugLastExceptionsNextIndex
= 0;
3 references to _debugLastExceptionsNextIndex
Microsoft.Diagnostics.DataContractReader.Legacy (3)
DebugExtensions.cs (3)
51
ring[
_debugLastExceptionsNextIndex
] = e.Exception;
52
_debugLastExceptionsNextIndex = (
_debugLastExceptionsNextIndex
+ 1) % LastExceptionRingSize;
63
int next =
_debugLastExceptionsNextIndex
;