Mercury API
VersionNumber Constructor (part1, part2, part3, part4)
NamespacesThingMagicVersionNumberVersionNumber(Byte, Byte, Byte, Byte)
Construct a new VersionNumber object given the individual components. Note that all version number components are discussed and presented in hexadecimal format, that is, in the version number "9.5.12.0", the 12 is 0x12 and should be passed to this constructor as such.
Declaration Syntax
C#Visual BasicVisual C++
public VersionNumber(
	byte part1,
	byte part2,
	byte part3,
	byte part4
)
Public Sub New ( _
	part1 As Byte, _
	part2 As Byte, _
	part3 As Byte, _
	part4 As Byte _
)
public:
VersionNumber(
	unsigned char part1, 
	unsigned char part2, 
	unsigned char part3, 
	unsigned char part4
)
Parameters
part1 (Byte)
the first part of the version number
part2 (Byte)
the second part of the version number
part3 (Byte)
the third part of the version number
part4 (Byte)
the fourth part of the version number

Assembly: MercuryAPI (Module: MercuryAPI) Version: 1.29.4.34 (1.29.4.34)