ShellUtilitiesShellStringCompare Method |
Compares two strings.
This test is not case-sensitive.
Depending on machine's configuration, the comparison can be using the StrCmpLogicalW (the default) or the StrCmpI native function.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public static int ShellStringCompare(
string string1,
string string2
)
Parameters
- string1
- Type: SystemString
The first string. - string2
- Type: SystemString
The second string.
Return Value
Type:
Int32Zero if the strings are identical, 1 if the first string has a greater value than the second string, -1 if the first string has a lesser value than the second string.
See Also