ConversionsEqualsIgnoreCase Method |
Test two strings for equality using OrdinalIgnoreCase string comparison.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax 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:
Booleantrue 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