Version.Minor Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value of the minor component of the version number for the current Version object.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates the Version constructor and the Major, Minor, Build, and Revision properties.
// This example demonstrates the Version.Revision, // MajorRevision, and MinorRevision properties. using System; class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { string fmtStd = "Standard version:\n" + " major.minor.build.revision = {0}.{1}.{2}.{3}"; string fmtInt = "Interim version:\n" + " major.minor.build.revision = {0}.{1}.{2}.{3}"; Version std = new Version(2, 4, 1128, 2); Version interim = new Version(2, 4, 1128, (100 << 16) + 2); outputBlock.Text += String.Format(fmtStd, std.Major, std.Minor, std.Build, std.Revision) + "\n"; outputBlock.Text += String.Format(fmtInt, interim.Major, interim.Minor, interim.Build, interim.Revision) + "\n"; } } /* This code example produces the following results: Standard version: major.minor.build.revision = 2.4.1128.2 Interim version: major.minor.build.majRev/minRev = 2.4.1128.100/2 */
Show: