VersionNumber Constructor (Int32, Int32, DateTime, VersionNumberBranch) |
Initializes a new instance of the VersionNumber structure to the version specified by the parameters.
Namespace:
GH_IO
Assembly:
GH_IO (in GH_IO.dll)
Syntax public VersionNumber(
int major,
int minor,
DateTime time,
VersionNumberBranch buildBranch
)
Public Sub New (
major As Integer,
minor As Integer,
time As DateTime,
buildBranch As VersionNumberBranch
)
Parameters
- major
- Type: SystemInt32
The major version number (0 through 63).
- minor
- Type: SystemInt32
The minor version number (0 through 127).
- time
- Type: SystemDateTime
The time is the version time (January 1, 2000 00:00 through December 31 23:59). Seconds are ignored.
- buildBranch
- Type: GH_IOVersionNumberBranch
The branch used to build the product (developer, trunk, release_candidate, or release).
See Also