C# Class Net.Sf.Dbdeploy.UniqueChange

Represents any unique change.
Inheritance: IComparable
Mostra file Open project: brunomlopes/dbdeploy.net Class Usage Examples

Public Methods

Method Description
CompareTo ( object obj ) : int

Compares the object to another giving a result of less than, equal to, or greater than.

ToString ( ) : string

Returns a System.String that represents this instance.

UniqueChange ( string uniqueKey ) : System

Initializes a new instance of the UniqueChange class.

UniqueChange ( string folder, int scriptNumber ) : System

Initializes a new instance of the UniqueChange class.

Method Details

CompareTo() public method

Compares the object to another giving a result of less than, equal to, or greater than.
public CompareTo ( object obj ) : int
obj object The object to compare.
return int

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

UniqueChange() public method

Initializes a new instance of the UniqueChange class.
uniqueKey;The unique key must be a supplied.
public UniqueChange ( string uniqueKey ) : System
uniqueKey string The unique key folder and script number combination (Alpha/2).
return System

UniqueChange() public method

Initializes a new instance of the UniqueChange class.
public UniqueChange ( string folder, int scriptNumber ) : System
folder string The folder.
scriptNumber int The script number.
return System