Version Constructor (String)
Initializes a new instance of the Version class using the specified string.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- version
- Type: System::String
A string containing the major, minor, build, and revision numbers, where each number is delimited with a period character ('.').
| Exception | Condition |
|---|---|
| ArgumentException | version has fewer than two components or more than four components. |
| ArgumentNullException | version is nullptr. |
| ArgumentOutOfRangeException | A major, minor, build, or revision component is less than zero. |
| FormatException | At least one component of version does not parse to an integer. |
| OverflowException | At least one component of version represents a number greater than MaxValue. |
The version parameter can contain only the components major, minor, build, and revision, in that order, and all separated by periods. There must be at least two components, and at most four. The first two components are assumed to be major and minor. The value of unspecified components is undefined.
The format of the version number is as follows. Optional components are shown in square brackets ('[' and ']'):
major.minor[.build[.revision]]
All defined components must be integers greater than or equal to 0. For example, if the major number is 6, the minor number is 2, the build number is 1, and the revision number is 3, then version should be "6.2.1.3".
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.