Пример #1
0
 public void ShouldNotBeInBetweenNumbers(float min, float max, float value)
 {
     Assert.IsFalse(MathX.IsBetween(value, min, max));
 }
 public static bool IsBetween(this float value, float minInclusive, float maxInclusive)
 => MathX.IsBetween(value, minInclusive, maxInclusive);