C# Class SemanticVersion, Obsolete

Show file Open project: Fody/Obsolete Class Usage Examples

Public Properties

Property Type Description
Major int
Minor int
Patch int

Public Methods

Method Description
CompareTo ( SemanticVersion, value ) : int
Equals ( SemanticVersion, obj ) : bool
ToString ( ) : string
TryParse ( string versionString, SemanticVersion, &semanticVersion ) : bool
operator ( ) : bool

Method Details

CompareTo() public method

public CompareTo ( SemanticVersion, value ) : int
value SemanticVersion,
return int

Equals() public method

public Equals ( SemanticVersion, obj ) : bool
obj SemanticVersion,
return bool

ToString() public method

public ToString ( ) : string
return string

TryParse() public static method

public static TryParse ( string versionString, SemanticVersion, &semanticVersion ) : bool
versionString string
semanticVersion SemanticVersion,
return bool

operator() public static method

public static operator ( ) : bool
return bool

Property Details

Major public property

public int Major
return int

Minor public property

public int Minor
return int

Patch public property

public int Patch
return int