Click or drag to resize

CollectionExtensionsContainsAny Method (String, Char)

Shortcut to test if any of the given characters is contained in the specified string.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static bool ContainsAny(
	this string self,
	params char[] characters
)

Parameters

self
Type: SystemString
The string to analyze self.
characters
Type: SystemChar
The characters to test for.

Return Value

Type: Boolean
true if any of the characters is contained in the specified string; otherwise false.

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).
See Also