VirtualUser VerifyLE Method (Int32, Int32, Boolean)C# API
Verifies that one integer is less than or equal to another.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public bool VerifyLE(
	int arg1,
	int arg2,
	bool throwException
)

Parameters

arg1
Type: System Int32
The 1st integer.
arg2
Type: System Int32
The 2nd integer.
throwException
Type: System Boolean
true if an FCException should be thrown if the 1st integer is not less than or equal to the 2nd integer.

Return Value

true if the 1st integer is less than or equal to the 2nd integer; otherwise, false.
See Also