 | LongSmoothenerIsLess Method |
Indicates if value A is less than value B.
Namespace:
Slash.Unity.DataBind.Foundation.Providers.Smootheners
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxprotected override bool IsLess(
long valueA,
long valueB
)
Protected Overrides Function IsLess (
valueA As Long,
valueB As Long
) As Boolean
protected:
virtual bool IsLess(
long long valueA,
long long valueB
) override
abstract IsLess :
valueA : int64 *
valueB : int64 -> bool
override IsLess :
valueA : int64 *
valueB : int64 -> bool
Parameters
- valueA
- Type: SystemInt64
First value. - valueB
- Type: SystemInt64
Second value.
Return Value
Type:
BooleanTrue if first value is less than second value; otherwise, false.
See Also