Click or drag to resize
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.tools
Assembly: semver.tools (in semver.tools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public SemanticVersion(
	int major,
	int minor,
	int build,
	int revision
)

Parameters

major
Type: SystemInt32
minor
Type: SystemInt32
build
Type: SystemInt32
revision
Type: SystemInt32
See Also