FileVersionInfo.FileBuildPart Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the build number of the file.
public:
property int FileBuildPart { int get(); };
public int FileBuildPart { get; }
member this.FileBuildPart : int
Public ReadOnly Property FileBuildPart As Integer
Property Value
A value representing the build number of the file or null
if the file did not contain version information.
Examples
The following example calls GetVersionInfo to get the FileVersionInfo for the Notepad. Then it prints the FileBuildPart in a text box. This code assumes textBox1
has been instantiated.
private:
void GetFileBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo^ myFileVersionInfo =
FileVersionInfo::GetVersionInfo(Environment::SystemDirectory + "\\Notepad.exe");
// Print the file build number.
textBox1->Text = String::Format( "File build number: {0}", myFileVersionInfo->FileBuildPart );
}
private void GetFileBuildPart()
{
// Get the file version for the notepad.
FileVersionInfo myFileVersionInfo =
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");
// Print the file build number.
textBox1.Text = "File build number: " + myFileVersionInfo.FileBuildPart;
}
Private Sub GetFileBuildPart()
' Get the file version for the notepad.
Dim myFileVersionInfo As FileVersionInfo = _
FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
' Print the file build number.
textBox1.Text = "File build number: " & myFileVersionInfo.FileBuildPart
End Sub
Remarks
Typically, a version number is displayed as "major number.minor number.build number.private part number". A file version number is a 64-bit number that holds the version number for a file as follows:
The first 16 bits are the FileMajorPart number.
The next 16 bits are the FileMinorPart number.
The third set of 16 bits are the FileBuildPart number.
The last 16 bits are the FilePrivatePart number.
This property gets the third set of 16 bits.