Geotools.Net

Geometry.Compare Method 

Returns the first non-zero result of CompareTo encountered as the two Collections are iterated over. If, by the time one of the iterations is complete, no non-zero result has been encountered, returns 0 if the other iteration is also complete. If b completes before a, a positive number is returned; if a before b, a negative number.

[Visual Basic]
Overridable Protected Function Compare( _
   ByVal a As ArrayList, _
   ByVal b As ArrayList _
) As Integer
[C#]
protected virtual int Compare(
   ArrayList a,
   ArrayList b
);

Parameters

a
a Collection of Comparables
b
a Collection of Comparables

Return Value

the first non-zero compareTo result, if any; otherwise, zero

Remarks

Missing <remarks> documentation for M:Geotools.Geometries.Geometry.Compare(System.Collections.ArrayList,System.Collections.ArrayList)

See Also

Geometry Class | Geometry Members | Geotools.Geometries Namespace