StringSegment.Compare(StringSegment, StringSegment, StringComparison) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares substrings of two specified StringSegment objects using the specified rules, and returns an integer that indicates their relative position in the sort order.
public:
static int Compare(Microsoft::Extensions::Primitives::StringSegment a, Microsoft::Extensions::Primitives::StringSegment b, StringComparison comparisonType);
public static int Compare (Microsoft.Extensions.Primitives.StringSegment a, Microsoft.Extensions.Primitives.StringSegment b, StringComparison comparisonType);
static member Compare : Microsoft.Extensions.Primitives.StringSegment * Microsoft.Extensions.Primitives.StringSegment * StringComparison -> int
Public Shared Function Compare (a As StringSegment, b As StringSegment, comparisonType As StringComparison) As Integer
Parameters
The first StringSegment to compare.
The second StringSegment to compare.
- comparisonType
- StringComparison
One of the enumeration values that specifies the rules for the comparison.
Returns
A 32-bit signed integer indicating the lexical relationship between the two comparands.
The value is negative if a
is less than b
, 0 if the two comparands are equal,
and positive if a
is greater than b
.