C# Version Minor
Description
Version Minor
gets the value of the minor component of
the version number for the current Version object.
Syntax
Version.Minor
has the following syntax.
public int Minor { get; }
Example
The following code example demonstrates the Version constructor, and Major, Minor, Build, Revision, MajorRevision, and MinorRevision properties.
/*from w ww. j a va 2 s. com*/
using System;
class Sample
{
public static void Main()
{
Version std = new Version(1, 2, 1234, 2);
Console.WriteLine(std.Major);
Console.WriteLine(std.Minor);
Console.WriteLine(std.Build);
Console.WriteLine(std.Revision);
}
}
The code above generates the following result.