C# Класс AdaptiveTriggerLibrary.ConditionModifiers.ComparableModifiers.LessThanEqualToModifier

A modifier where the value must be less than or equal to the condition.
Наследование: ModifierBase, IComparableModifier
Показать файл Открыть проект

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

Метод Описание
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