IComparable.CompareTo Method
Updated: December 2010
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System.Object
An object to compare with this instance.
Return Value
Type: System.Int32A value that indicates the relative order of the objects being compared. The return value has these meanings:
Value | Meaning |
|---|---|
Less than zero | This instance precedes obj in the sort order. |
Zero | This instance occurs in the same position in the sort order as obj. |
Greater than zero | This instance follows obj in the sort order. |
| Exception | Condition |
|---|---|
| ArgumentException |
obj is not the same type as this instance. |
The CompareTo method is implemented by types whose values can be ordered or sorted. It is called automatically by methods of non-generic collection objects, such as Array.Sort, to order each member of the array. If a custom class or structure does not implement IComparable, its members cannot be ordered and the sort operation can throw an InvalidOperationException.
This method is only a definition and must be implemented by a specific class or value type to have effect. The meaning of the comparisons specified in the Return Value section ("precedes", "occurs in the same position as", and "follows") depends on the particular implementation.
By definition, any object compares greater than (or follows) null, and two null references compare equal to each other.
The parameter, obj, must be the same type as the class or value type that implements this interface; otherwise, an ArgumentException is thrown.
Notes to Implementers
For objects A, B and C, the following must be true:
A.CompareTo(A) must return zero.
If A.CompareTo(B) returns zero, then B.CompareTo(A) must return zero.
If A.CompareTo(B) returns zero and B.CompareTo(C) returns zero, then A.CompareTo(C) must return zero.
If A.CompareTo(B) returns a value other than zero, then B.CompareTo(A) must return a value of the opposite sign.
If A.CompareTo(B) returns a value x not equal to zero, and B.CompareTo(C) returns a value y of the same sign as x, then A.CompareTo(C) must return a value of the same sign as x and y.
Notes to Callers
Use the CompareTo method to determine the ordering of instances of a class.
The following example illustrates the use of CompareTo to compare a Temperature object implementing IComparable with another object. The Temperature object implements CompareTo by simply wrapping a call to the Int32.CompareTo method.
using System; using System.Collections; public class Temperature : IComparable { // The temperature value protected double temperatureF; public int CompareTo(object obj) { if (obj == null) return 1; Temperature otherTemperature = obj as Temperature; if (otherTemperature != null) return this.temperatureF.CompareTo(otherTemperature.temperatureF); else throw new ArgumentException("Object is not a Temperature"); } public double Fahrenheit { get { return this.temperatureF; } set { this.temperatureF = value; } } public double Celsius { get { return (this.temperatureF - 32) * (5.0/9); } set { this.temperatureF = (value * 9.0/5) + 32; } } } public class CompareTemperatures { public static void Main() { ArrayList temperatures = new ArrayList(); // Initialize random number generator. Random rnd = new Random(); // Generate 10 temperatures between 0 and 100 randomly. for (int ctr = 1; ctr <= 10; ctr++) { int degrees = rnd.Next(0, 100); Temperature temp = new Temperature(); temp.Fahrenheit = degrees; temperatures.Add(temp); } // Sort ArrayList. temperatures.Sort(); foreach (Temperature temp in temperatures) Console.WriteLine(temp.Fahrenheit); } } // The example displays the following output to the console (individual // values may vary because they are randomly generated): // 2 // 7 // 16 // 17 // 31 // 37 // 58 // 66 // 72 // 95
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
http://blogs.msdn.com/b/dsyme/archive/2009/11/08/equality-and-comparison-constraints-in-f-1-9-7.aspx
In the code below I have sacrificed elegance to convey what I hope is clarity
note that " | :? yobjType as yobj -> compare this.symbol yobj.symbol"
may be read as when both this and yobj are both of type objType and therefore contain a member "symbol" which is a string type and as such support the compare method.
type objType(m_symbol : string...
// contains a member named 'symbol' which in this case is a string, which provides the compare method to use
member this.symbol = m_symbol
interface System.IComparable with //<UnitOfMeasure> with
member this.CompareTo yobj =
match yobj with
| :? objType as yobj -> compare this.symbol yobj.symbol
| _ -> invalidArg "yobj" "Cannot compare values of different types"
Hope this helps.
Be warned, you will recieve the below warning when using the above snipit. I leave it to provide "An implementation of 'Object.Equals'" as I think I can live with the risk to type safety wor whatever it is
Warning 1 The type 'UnitOfMeasure' implements 'System.IComparable' explicitly but provides no corresponding override for 'Object.Equals'. An implementation of 'Object.Equals' has been automatically provided, implemented via 'System.IComparable'. Consider implementing the override 'Object.Equals' explicitly
- 12/23/2011
- visProcessEngg