StringUtilsEqualsCI Method |
Compare two strings case-insensitively (using OrdinalIgnoreCase).
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static bool EqualsCI(
string s1,
string s2
)
Public Shared Function EqualsCI (
s1 As String,
s2 As String
) As Boolean
Parameters
- s1
- Type: SystemString
The first string to compare. - s2
- Type: SystemString
The second string to compare.
Return Value
Type:
BooleanTrue if the two strings are equivalent, else false.
See Also