StringSegmentComparer.Compare(StringSegment, StringSegment) Method

Definition

Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.

public:
 virtual int Compare(Microsoft::Extensions::Primitives::StringSegment x, Microsoft::Extensions::Primitives::StringSegment y);
public int Compare (Microsoft.Extensions.Primitives.StringSegment x, Microsoft.Extensions.Primitives.StringSegment y);
abstract member Compare : Microsoft.Extensions.Primitives.StringSegment * Microsoft.Extensions.Primitives.StringSegment -> int
override this.Compare : Microsoft.Extensions.Primitives.StringSegment * Microsoft.Extensions.Primitives.StringSegment -> int
Public Function Compare (x As StringSegment, y As StringSegment) As Integer

Parameters

x
StringSegment

The first object to compare.

y
StringSegment

The second object to compare.

Returns

A signed integer that indicates the relative values of x and y.

Implements

Remarks

The value returned by this method can have the following meanings:

Value Meaning
Less than zero x is less than y.
Zero x equals y.
Greater than zero x is greater than y.

Applies to