Click or drag to resize
StringExtensionsContains Method (String, String, StringComparison)
Checks if a string contains the specified value according to the provided comparison rules

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static bool Contains(
	this string input,
	string value,
	StringComparison stringComparison
)

Parameters

input
Type: SystemString
the string to check
value
Type: SystemString
the value to check for
stringComparison
Type: SystemStringComparison
the rules to use in the check

Return Value

Type: Boolean
the value of the expression

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