C# Version MinorRevision
Description
Version MinorRevision
gets the low 16 bits of the revision
number.
Syntax
Version.MinorRevision
has the following syntax.
public short MinorRevision { get; }
Example
This example demonstrates the Version.Revision, MajorRevision, and MinorRevision properties.
/*from w w w .j a va2s . com*/
using System;
class Sample
{
public static void Main()
{
Version interim = new Version(2, 4, 1128, (100 << 16) + 2);
Console.WriteLine(interim.MajorRevision);
Console.WriteLine(interim.MinorRevision);
}
}
The code above generates the following result.