Click or drag to resize
StringExtensionsContains Method (IEnumerableString, String, StringComparison)
Determines whether the provided list of strings contains the specified string using the provided StringComparison object.

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

Parameters

input
Type: System.Collections.GenericIEnumerableString
The input.
value
Type: SystemString
The value.
stringComparison
Type: SystemStringComparison
The string comparison object to use.

Return Value

Type: Boolean
True if the list contains the value otherwise false

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableString. 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