You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this ReturnsExtensions.cs file, we are using if (!(minDelay < maxDelay)) which could be changed to if (minDelay >= maxDelay) which is more readable.
In this ReturnsExtensions.cs file, we are using
if (!(minDelay < maxDelay))which could be changed toif (minDelay >= maxDelay)which is more readable.