C# Version Version(Int32, Int32)

Description

Version Version(Int32, Int32) initializes a new instance of the Version class using the specified major and minor values.

Syntax

Version.Version(Int32, Int32) has the following syntax.


public Version(
  int major,
  int minor
)

Parameters

Version.Version(Int32, Int32) has the following parameters.

  • major - The major version number.
  • minor - The minor version number.

Example


//from www  .  j  a va 2 s.co m
using System;

class Sample 
{
    public static void Main() 
    {
        Version interim = new Version(1,2);
    
        Console.WriteLine(interim);
    }
}

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