Constructs a new instance of a SemanticVersion with the supplied components.
the major version.
the minor version.
the patch version.
the optional prerelease specifier.
the optional build specifier.
Compares this version with another version.
the other version to compare with
a negative number if this version is less than the other, zero if they are equal, or a positive number if this version is greater
Checks if this version equals another object.
true if the objects are equal, false otherwise
Returns a string representation of this version.
the version string
Returns a new instance of a SemanticVersion with the build information cleared.
a new instance of a SemanticVersion.
Returns a new instance of a SemanticVersion with prerelease information cleared.
a new instance of a SemanticVersion.
Static
parseParses a semantic version string into the individual components.
a semantic version number in string form.
an instance of a SemanticVersion containing the individual components.
A standard representation of a semantic version number.