VirtualUser VerifyEQ Method (String, String, Boolean, Boolean)C# API
Verifies that two strings are equal.

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

public bool VerifyEQ(
	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 strings are not equal.
caseInsensitive
Type: System Boolean
true if the comparison should be case-insensitive.

Return Value

true if the strings are equal; otherwise, false.
See Also