C-DEngine 5.105

Ext..::..Contains Method (String, array<Char>[]()[][])

Determines whether the specified String contains any of characters in the specified array of Char.

Namespace:  WebSocketSharp
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static bool Contains(
	string value,
	params char[] chars
)
Public Shared Function Contains ( _
	value As String, _
	ParamArray chars As Char() _
) As Boolean
public:
static bool^ Contains(
	String^ value, 
	... array<wchar_t^>^ chars
)

Parameters

value
Type: String
A String to test.
chars
Type: array<Char>[]()[][]
An array of Char that contains characters to find.

Return Value

true if value contains any of chars; otherwise, false.