StringExtensionsContainsAny(String, String) Method

Gets whether the specified String s contains any of the strings in the specified set by case sensitive ordinal comparison.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
C#
public static bool ContainsAny(
	this string s,
	params string[] set
)

Parameters

s  String
A String instance that is to be compared to each element of the set.
set  String
A string array

Return Value

Boolean
if string s contains any of the elements of set; otherwise, .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullExceptions is
-or-
set is .
ArgumentExceptionsetcontains a element.

See Also