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.