C# Version Version(String)

Description

Version Version(String) initializes a new instance of the Version class using the specified string.

Syntax

Version.Version(String) has the following syntax.


public Version(
  string version
)

Parameters

Version.Version(String) has the following parameters.

  • version - A string containing the major, minor, build, and revision numbers, where each number is delimited with a period character ('.').

Example


/* w  w w . ja va  2s .  co  m*/
using System;

class Sample 
{
    public static void Main() 
    {
        Version interim = new Version("1.2.3.333");
    
        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