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