C# Version MajorRevision
Description
Version MajorRevision
gets the high 16 bits of the revision
number.
Syntax
Version.MajorRevision
has the following syntax.
public short MajorRevision { get; }
Example
This example demonstrates the Version.Revision, MajorRevision, and MinorRevision properties.
/*from www . j a va 2 s . c o m*/
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.