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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version