Checks to see if search string is contained in inputstring. Case insensitive.

Namespace:  HS.Sys.TheEnterprise.Common.Laserbear
Assembly:  Laserbear (in Laserbear.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public static bool StringContains(
	string inputString,
	string searchString
)
Visual Basic (Declaration)
Public Shared Function StringContains ( _
	inputString As String, _
	searchString As String _
) As Boolean
Visual C++
public:
static bool StringContains(
	String^ inputString, 
	String^ searchString
)

Parameters

inputString
Type: System..::.String
String to search
searchString
Type: System..::.String
String to search for in inputString

Return Value

True if search string is found in input string (Case insensitive). False otherwise.

See Also