C# Класс NFluent.ComparableCheckExtensions

Provides check methods to be executed on an IComparable instance.
Показать файл Открыть проект

Открытые методы

Метод Описание
IsAfter ( this check, IComparable givenValue ) : ICheckLink>

Determines whether the specified value is after the other one.

IsBefore ( this check, IComparable givenValue ) : ICheckLink>

Determines whether the specified value is before the other one.

Описание методов

IsAfter() публичный статический Метод

Determines whether the specified value is after the other one.
The current value is not after the other one.
public static IsAfter ( this check, IComparable givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue IComparable The other value.
Результат ICheckLink>

IsBefore() публичный статический Метод

Determines whether the specified value is before the other one.
The current value is not before the other one.
public static IsBefore ( this check, IComparable givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue IComparable The other value.
Результат ICheckLink>