VirtualUser VerifyLT Method (String, String, Boolean, Boolean)C# API
Verifies that one string is less than another.

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

public bool VerifyLT(
	string arg1,
	string arg2,
	bool throwException,
	bool caseInsensitive
)

Parameters

arg1
Type: System String
The 1st string.
arg2
Type: System String
The 2nd string.
throwException
Type: System Boolean
true if an FCException should be thrown if the 1st string is not less than the 2nd string.
caseInsensitive
Type: System Boolean
true if the comparison should be case-insensitive.

Return Value

true if the 1st string is less than the 2nd string; otherwise, false.
See Also