C# 클래스 NFluent.ComparableCheckExtensions

Provides check methods to be executed on an IComparable instance.
파일 보기 프로젝트 열기: tpierrain/NFluent

공개 메소드들

메소드 설명
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>