C# Version Version(Int32, Int32, Int32)
Description
Version Version(Int32, Int32, Int32)
initializes a
new instance of the Version class using the specified major, minor, and build
values.
Syntax
Version.Version(Int32, Int32, Int32)
has the following syntax.
public Version(//w ww . j av a 2 s. c om
int major,
int minor,
int build
)
Parameters
Version.Version(Int32, Int32, Int32)
has the following parameters.
major
- The major version number.minor
- The minor version number.build
- The build number.
Example
/*from w w w. j a v a 2 s.c o m*/
using System;
class Sample
{
public static void Main()
{
Version interim = new Version(1,2,3);
Console.WriteLine(interim);
}
}
The code above generates the following result.