Click or drag to resize
IUserAccessiablestringContains Method (String, String, Boolean)
Determines whether or not string inPart contained in string inFull

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool stringContains(
	string inFull,
	string inPart,
	bool inIgnoreCase
)

Parameters

inFull
Type: SystemString
string to look inPart string in
inPart
Type: SystemString
string to find in string inFull
inIgnoreCase
Type: SystemBoolean
'true' if to ignore upper/lower cases, or 'false' otherwise

Return Value

Type: Boolean
'true' if inPart contained in inFull, or false otherwise
Examples
stringContains("Good Morning", "oRn", true) will return true.
See Also