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