Click or drag to resize

ConversionsEqualsIgnoreCase Method

Test two strings for equality using OrdinalIgnoreCase string comparison.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static bool EqualsIgnoreCase(
	this string thisString,
	string text,
	bool trim = false
)

Parameters

thisString
Type: SystemString
The first string.
text
Type: SystemString
The second string.
trim (Optional)
Type: SystemBoolean
if set to true input strings are trimmed for comparison.

Return Value

Type: Boolean
true if both strings are equal, false 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).
See Also