1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 00:05:42 +00:00

(#42) Validate lower <= upper

This commit is contained in:
Oliver Booth 2021-06-27 13:14:42 +01:00
parent 370f2d96f4
commit d6f4a96257

View File

@ -45,12 +45,21 @@ namespace X10D
/// </example>
public static bool Between<T1, T2, T3>(this T1 value, T2 lower, T3 upper)
where T1 : IComparable<T2>, IComparable<T3>
where T2 : IComparable<T3>
where T3 : IComparable<T2>
{
if (value is null)
{
throw new ArgumentNullException(nameof(value));
}
if (lower.GreaterThan(upper))
{
throw new ArgumentException(
string.Format(ExceptionMessages.LowerCannotBeGreaterThanUpper, lower, upper),
nameof(lower));
}
return value.CompareTo(lower) > 0 && value.CompareTo(upper) < 0;
}