C# 클래스 AdaptiveTriggerLibrary.ConditionModifiers.ComparableModifiers.LessThanEqualToModifier

A modifier where the value must be less than or equal to the condition.
상속: ModifierBase, IComparableModifier
파일 보기 프로젝트 열기: Herdo/AdaptiveTriggerLibrary

공개 메소드들

메소드 설명
IsConditionMet ( object condition, object value ) : bool

Checks if the value meets the specified condition.

비공개 메소드들

메소드 설명
IsConditionMet ( IComparable condition, IComparable value ) : bool

메소드 상세

IsConditionMet() 공개 메소드

Checks if the value meets the specified condition.
The underlying type of doesn't match expected condition type, /// or the underlying type of doesn't match the expected value type. Either or cannot be casted to the specified underlying type.
public IsConditionMet ( object condition, object value ) : bool
condition object The condition.
value object The actual value.
리턴 bool