C# Version Version()
Description
Version Version()
initializes a new instance of the Version
class.
Syntax
Version.Version()
has the following syntax.
public Version()
Example
//from w ww .j ava2s.c om
using System;
class Sample
{
public static void Main()
{
Version interim = new Version();
Console.WriteLine(interim.MajorRevision);
Console.WriteLine(interim.MinorRevision);
}
}
The code above generates the following result.