C# Version Build
Description
Version Build
gets the value of the build component of
the version number for the current Version object.
Syntax
Version.Build
has the following syntax.
public int Build { get; }
Example
The following code example demonstrates the Version constructor, and Major, Minor, Build, Revision, MajorRevision, and MinorRevision properties.
//from w w w. jav a 2 s.c om
using System;
class Sample
{
public static void Main()
{
Version std = new Version(1, 2, 1234, 2);
Console.WriteLine(std.Major);
Console.WriteLine(std.Minor);
Console.WriteLine(std.Build);
Console.WriteLine(std.Revision);
}
}
The code above generates the following result.