Summary
Syntax
[PublicAPI]
[NotNull]
public static IComplexSpecification<T> NotExclusiveBetween<T>(this ICompositeSpecification<T> self, T notFrom, T notTo, IComparer<T> comparer = null)
Attributes
| Type |
Description |
| PublicAPI |
|
| NotNull |
|
Type Parameters
| Name |
Description |
| T |
Type of compared objects. |
Parameters
| Name |
Type |
Description |
| self |
ICompositeSpecification<T> |
Self specification. |
| notFrom |
T |
Not min candidate value. |
| notTo |
T |
Not max candidate value. |
| comparer |
IComparer<T> |
Comparer. |
Return Value
Exceptions
| Type |
Description |
| System.ArgumentNullException |
Thrown when self is null. |
| System.ArgumentException |
Thrown when notFrom is greater than notTo. |