FileVersionInfo.ProductPrivatePart Property

Definition

Gets the private part number of the product this file is associated with.

public:
 property int ProductPrivatePart { int get(); };
public int ProductPrivatePart { get; }
member this.ProductPrivatePart : int
Public ReadOnly Property ProductPrivatePart As Integer

Property Value

A value representing the private part number of the product this file is associated with 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 ProductPrivatePart in a text box. This code assumes textBox1 has been instantiated.

private:
    void GetProductPrivatePart()
    {
        // Get the file version for the notepad.
        FileVersionInfo^ myFileVersionInfo =
            FileVersionInfo::GetVersionInfo( Environment::SystemDirectory + "\\Notepad.exe" );

        // Print the product private part number.
        textBox1->Text = String::Concat( "Product private part number: ", myFileVersionInfo->ProductPrivatePart );
    }
private void GetProductPrivatePart()
{
    // Get the file version for the notepad.
    FileVersionInfo myFileVersionInfo =
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\\Notepad.exe");

    // Print the product private part number.
    textBox1.Text = "Product private part number: " + myFileVersionInfo.ProductPrivatePart;
}
Private Sub GetProductPrivatePart()
    ' Get the file version for the notepad.
    Dim myFileVersionInfo As FileVersionInfo = _
        FileVersionInfo.GetVersionInfo(Environment.SystemDirectory + "\Notepad.exe")
    
    ' Print the product private part number.
    textBox1.Text = "Product private part number: " & myFileVersionInfo.ProductPrivatePart
End Sub

Remarks

Typically, a version number is displayed as "major number.minor number.build number.private part number". A product version number is a 64-bit number that holds the version number as follows:

This property gets the last set of 16 bits.

Applies to

See also