Gets the value of the minor component of the version number for the current Version object.
A int specifying the minor component.
C# Example
using System; class VersionMinorExample { public static void Main() { Version vers = new Version("6.1.2.4"); Console.Write("The minor component "); Console.WriteLine("of version vers = {0}.", vers.Minor); } }
The output is
The minor component of version vers = 1.