Array.IStructuralComparable.CompareTo Method (Object, IComparer)
.NET Framework (current version)
Determines whether the current collection object precedes, occurs in the same position as, or follows another object in the sort order.
Assembly: mscorlib (in mscorlib.dll)
Private Function CompareTo ( other As Object, comparer As IComparer ) As Integer Implements IStructuralComparable.CompareTo
Parameters
- other
-
Type:
System.Object
The object to compare with the current instance.
- comparer
-
Type:
System.Collections.IComparer
An object that compares the current object and other.
Return Value
Type: System.Int32An integer that indicates the relationship of the current collection object to other, as shown in the following table.
Return value | Description |
|---|---|
-1 | The current instance precedes other. |
0 | The current instance and other are equal. |
1 | The current instance follows other. |
This member is an explicit interface member implementation. It can be used only when the Array instance is cast to an IStructuralComparable interface.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: