5 references to LastExceptionRingSize
Microsoft.Diagnostics.DataContractReader.Legacy (5)
DebugExtensions.cs (5)
50
Exception?[] ring = _debugLastExceptions ??= new Exception?[
LastExceptionRingSize
];
52
_debugLastExceptionsNextIndex = (_debugLastExceptionsNextIndex + 1) %
LastExceptionRingSize
;
64
for (int i = 0; i <
LastExceptionRingSize
; i++)
66
int idx = (next - 1 - i +
LastExceptionRingSize
) %
LastExceptionRingSize
;