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.





















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