| ChangeCompareTo Method (Change) | 
 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. 
 
    Namespace: 
   VelocityDb.Sync
    Assembly:
   VelocityDb (in VelocityDb.dll) Version: 8.2.1.0 (8.2.1)
 Syntax
Syntaxpublic int CompareTo(
	Change change
)
Public Function CompareTo ( 
	change As Change
) As Integer
public:
virtual int CompareTo(
	Change^ change
) sealed
abstract CompareTo : 
        change : Change -> int 
override CompareTo : 
        change : Change -> int Parameters
- change
- Type: VelocityDb.SyncChange
 [Missing <param name="change"/> documentation for "M:VelocityDb.Sync.Change.CompareTo(VelocityDb.Sync.Change)"] 
Return Value
Type: 
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 
other in the sort order.  Zero This instance occurs in the same position in the sort order as 
other. Greater than zero This instance follows 
other in the sort order. 
Implements
IComparableTCompareTo(T) See Also
See Also