SemanticVersion Constructor (Int32, Int32, Int32, Int32) |
Constructs a SemanticVersion out of a Major, Minor and Build version and a Revision.
Use this when dealing with Microsoft style versions rather than true semantic versions.
Namespace: semver.toolsAssembly: semver.tools (in semver.tools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic SemanticVersion(
int major,
int minor,
int build,
int revision
)
Public Sub New (
major As Integer,
minor As Integer,
build As Integer,
revision As Integer
)
public:
SemanticVersion(
int major,
int minor,
int build,
int revision
)
new :
major : int *
minor : int *
build : int *
revision : int -> SemanticVersion
Parameters
- major
- Type: SystemInt32
- minor
- Type: SystemInt32
- build
- Type: SystemInt32
- revision
- Type: SystemInt32
See Also