Share via


Version Constructor (Int32, Int32, Int32, Int32)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Initializes a new instance of the Version class with the specified major, minor, build, and revision numbers.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Sub New ( _
    major As Integer, _
    minor As Integer, _
    build As Integer, _
    revision As Integer _
)
public Version(
    int major,
    int minor,
    int build,
    int revision
)
public:
Version(
    int major, 
    int minor, 
    int build, 
    int revision
)
new : 
        major:int * 
        minor:int * 
        build:int * 
        revision:int -> Version
public function Version(
    major : int, 
    minor : int, 
    build : int, 
    revision : int
)

Parameters

Exceptions

Exception Condition
ArgumentOutOfRangeException

major, minor, build, or revision is less than zero.

.NET Framework Security

See Also

Reference

Version Class

Version Overload

System Namespace